update to borders adding varying widths

This commit is contained in:
Michael Freno
2025-12-07 11:22:45 -05:00
parent 609a54b4f1
commit 392edc21f7
5 changed files with 174 additions and 12 deletions

View File

@@ -82,6 +82,15 @@ function love_helper.graphics.line(x1, y1, x2, y2)
-- Mock line drawing
end
function love_helper.graphics.setLineWidth(width)
-- Mock line width setting
end
function love_helper.graphics.getLineWidth()
-- Mock getting line width
return 1
end
function love_helper.graphics.polygon(mode, ...)
-- Mock polygon drawing
end