diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:03:34 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:03:34 +0100 |
commit | 14d2398b776d7be3c404af5f4e983b435efaf1d1 (patch) | |
tree | 76a4d0b73a0e179dca61ca0f95544edcd017f2d1 /game/menus/mainmenu/CreditsSubScript.cpp | |
parent | 38c88e394414556a464b07e091b4b7fc8fd27b1d (diff) |
`make format`jaro/game
Diffstat (limited to 'game/menus/mainmenu/CreditsSubScript.cpp')
-rw-r--r-- | game/menus/mainmenu/CreditsSubScript.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/game/menus/mainmenu/CreditsSubScript.cpp b/game/menus/mainmenu/CreditsSubScript.cpp index ce74ba4..4224dc8 100644 --- a/game/menus/mainmenu/CreditsSubScript.cpp +++ b/game/menus/mainmenu/CreditsSubScript.cpp @@ -1,8 +1,8 @@ #include "CreditsSubScript.h" #include "../../Events.h" -#include "../IFloatingWindowScript.h" #include "../ButtonReplaySubScript.h" +#include "../IFloatingWindowScript.h" #include <string> @@ -13,7 +13,6 @@ using namespace crepe; - CreditsSubScript::CreditsSubScript(const std::string & tag) { this->tag = tag; } void CreditsSubScript::init() { @@ -57,4 +56,3 @@ bool CreditsSubScript::enable_all() { bool CreditsSubScript::on_button_press(const ButtonPressEvent & e) { return this->disable_all(); } - |