1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#pragma once #include <crepe/api/Script.h> #include <string> class IFloatingWindowScript : public virtual crepe::Script { public: virtual void init(); void disable_all_sprites(); void enable_all_sprites(); protected: std::string tag = ""; };