fixed spacing

This commit is contained in:
Alexey 2025-10-30 00:13:37 +03:00
commit 2b36bf19f9
2 changed files with 4 additions and 2 deletions

View file

@ -65,6 +65,6 @@ function love.draw()
love.graphics.print(string.format("%s, %s", Mouse.point.x, Mouse.point.y), 100, 100)
for _, mech in ipairs(Mechs) do
mech:draw()
mech:draw()
end
end

View file

@ -3,6 +3,8 @@
---@field x integer
---@field y integer
---@field point GridPoint
---@field pressed boolean
---@field lastPressed boolean
Mouse = {
x = 0,
y = 0,