This commit is contained in:
Paul Liverman
2015-02-06 22:48:33 -08:00
commit 5e86090bf1
14 changed files with 424 additions and 0 deletions

7
src/main.lua Normal file
View File

@@ -0,0 +1,7 @@
local Gamestate = require "lib.gamestate"
local menu = require "menu"
function love.load()
Gamestate.registerEvents()
Gamestate.switch(menu)
end