mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
Adding touch screen configuration scene (placeholder)
This commit is contained in:
21
scene/touch_config.lua
Normal file
21
scene/touch_config.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
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
|
||||
Reference in New Issue
Block a user