mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
19 lines
431 B
Lua
19 lines
431 B
Lua
local TouchConfigScene = SCENE:extend()
|
|
TouchConfigScene.title = "Touchscreen config\n(you can tap anywhere on touch screen to select this)"
|
|
|
|
function TouchConfigScene:new()
|
|
-- TODO
|
|
end
|
|
function TouchConfigScene:update()
|
|
-- TODO
|
|
end
|
|
|
|
function TouchConfigScene:render()
|
|
MainBackground()
|
|
end
|
|
|
|
function TouchConfigScene:onInputPress(e)
|
|
if e.key == 'menu_back' then SCENE = TitleScene() end
|
|
end
|
|
|
|
return TouchConfigScene |