From df43fc782fd23fa40208d644f27e9891c0faf51d Mon Sep 17 00:00:00 2001 From: "Squishy (C6H12O6+NaCl+H2O)" <106439598+SweetSea-ButImNotSweet@users.noreply.github.com> Date: Fri, 17 May 2024 20:18:40 +0700 Subject: [PATCH] Remove unnecessary imports --- scene/exit.lua | 2 -- scene/fullscreen.lua | 2 -- scene/game.lua | 6 +++--- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/scene/exit.lua b/scene/exit.lua index 73300a5..e3a1c20 100644 --- a/scene/exit.lua +++ b/scene/exit.lua @@ -1,6 +1,4 @@ local ExitScene = SCENE:extend() -require 'settings' - ExitScene.title = "Exit Game" function ExitScene:new() diff --git a/scene/fullscreen.lua b/scene/fullscreen.lua index d817586..9188322 100644 --- a/scene/fullscreen.lua +++ b/scene/fullscreen.lua @@ -1,6 +1,4 @@ local FullscreenScene = SCENE:extend() -require 'settings' - FullscreenScene.title = "Fullscreen" function FullscreenScene:new() diff --git a/scene/game.lua b/scene/game.lua index f48c691..3c72a4b 100644 --- a/scene/game.lua +++ b/scene/game.lua @@ -1,11 +1,11 @@ local GameScene = SCENE:extend() - GameScene.title = "Game" + local tas = false -require 'settings' function GameScene:new(player_name, replay_file, replay_grade) - game_mode = require 'game.gamemode' + local game_mode = require 'game.gamemode' + local ruleset VCTRL[9].show = false; VCTRL[10].show = false -- Hide SELECT and QUIT button if PENTO_MODE then