Adding touch screen configuration scene (placeholder)

This commit is contained in:
Squishy (C6H12O6+NaCl+H2O)
2024-04-20 22:33:55 +07:00
parent 1773a6aa67
commit 66aae1342d
3 changed files with 32 additions and 5 deletions

21
scene/touch_config.lua Normal file
View 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