initial commit
This commit is contained in:
parent
3b5ca128ba
commit
538fea556d
5 changed files with 70 additions and 2 deletions
12
main.lua
12
main.lua
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue