First bundled release.
This commit is contained in:
24
scene/config.lua
Normal file
24
scene/config.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
local ConfigScene = Scene:extend()
|
||||
require 'load.save'
|
||||
|
||||
|
||||
|
||||
function ConfigScene:new()
|
||||
end
|
||||
|
||||
function ConfigScene:update()
|
||||
end
|
||||
|
||||
function ConfigScene:render()
|
||||
end
|
||||
|
||||
function ConfigScene:changeOption(rel)
|
||||
local len = table.getn(main_menu_screens)
|
||||
self.main_menu_state = (self.main_menu_state + len + rel - 1) % len + 1
|
||||
end
|
||||
|
||||
function ConfigScene:onKeyPress(e)
|
||||
end
|
||||
|
||||
return ConfigScene
|
||||
|
||||
Reference in New Issue
Block a user