initial commit

This commit is contained in:
Simo-Pekka Kerkelä 2019-02-07 23:56:49 +02:00
parent 3b5ca128ba
commit 538fea556d
5 changed files with 70 additions and 2 deletions

View file

@ -1,3 +1,11 @@
function love.draw()
love.graphics.print("Hello World", 400, 300)
require "scenes"
function love.load()
end
function love.update(dt)
scenes[#scenes].update(dt)
end
function love.draw()
scenes[#scenes].draw()
end