started with drawing rect

This commit is contained in:
2018-08-29 04:17:00 +02:00
commit 2f9add311d

19
main.lua Normal file
View File

@@ -0,0 +1,19 @@
function love.load()
end
function love.update(dt)
end
function love.draw()
love.graphics.rectangle("fill", 1, 1, 30, 30)
end
function love.keypressed(key)
end
function love.keyreleased(key)
end