Files
tromi_mobile/scene/touch_config.lua
2024-04-20 22:33:55 +07:00

21 lines
406 B
Lua

local TouchConfigScene = SCENE:extend()
TouchConfigScene.title = "Touchscreen config\n(you can tap anywhere to select this)"
function TouchConfigScene:new()
-- TODO
end
function TouchConfigScene:update()
-- TODO
end
function TouchConfigScene:onInputPress(e)
end
function TouchConfigScene:onInputRelease(e)
end
function TouchConfigScene:render()
MainBackground()
end
return TouchConfigScene