11 lines
265 B
Lua
11 lines
265 B
Lua
local Gamestate = require("lib.hump.gamestate")
|
|
|
|
function love.load()
|
|
love.math.setRandomSeed(love.timer.getTime())
|
|
love.keyboard.setKeyRepeat(true)
|
|
math.randomseed(love.timer.getTime())
|
|
|
|
Gamestate.switch(require("states.main"))
|
|
Gamestate.registerEvents()
|
|
end
|