diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:03:14 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:03:14 +0100 |
commit | 261a2cfd2bedafbc7fcf54e1b86adee206dea519 (patch) | |
tree | f099bca292e99ae54035f9a5ac7a455eec073c3e /game/menus/IFloatingWindowScript.h | |
parent | d9c67da9b8c2d8d25ef4dd2c700ddc78573d3a60 (diff) | |
parent | 0b9574bdd6c5968c07bcf165d66032b75649b5da (diff) |
merge w/ master
Diffstat (limited to 'game/menus/IFloatingWindowScript.h')
-rw-r--r-- | game/menus/IFloatingWindowScript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/menus/IFloatingWindowScript.h b/game/menus/IFloatingWindowScript.h index 9775726..e39378f 100644 --- a/game/menus/IFloatingWindowScript.h +++ b/game/menus/IFloatingWindowScript.h @@ -1,6 +1,7 @@ #pragma once #include <crepe/api/Script.h> + #include <string> class IFloatingWindowScript : public virtual crepe::Script { @@ -8,8 +9,7 @@ public: virtual void init(); void disable_all_sprites(); void enable_all_sprites(); + protected: std::string tag = ""; }; - - |