mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
Apply V2.2 patch
This commit is contained in:
21
scene/lines_toggle.lua
Normal file
21
scene/lines_toggle.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
local LinesToggleScene = SCENE:extend()
|
||||
LinesToggleScene.title = "Show lines during game:"
|
||||
|
||||
function LinesToggleScene:new()
|
||||
end
|
||||
|
||||
function LinesToggleScene:update()
|
||||
SETTINGS["lines"] = not SETTINGS["lines"]
|
||||
SCENE = TitleScene()
|
||||
end
|
||||
|
||||
function LinesToggleScene:render()
|
||||
end
|
||||
|
||||
function LinesToggleScene:changeOption(rel)
|
||||
end
|
||||
|
||||
function LinesToggleScene:onInputPress(e)
|
||||
end
|
||||
|
||||
return LinesToggleScene
|
||||
Reference in New Issue
Block a user