mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
9 lines
226 B
Lua
9 lines
226 B
Lua
local MusicToggleScene = SCENE:extend()
|
|
MusicToggleScene.title = "Play music during game:"
|
|
|
|
function MusicToggleScene:update()
|
|
SETTINGS["music"] = not SETTINGS["music"]
|
|
SCENE = TitleScene()
|
|
end
|
|
|
|
return MusicToggleScene |