#pragma once namespace Components { class UIScript : public Component { public: UIScript(); ~UIScript(); class Token { public: Token() : token(nullptr) {} Token(const char** args) : token(nullptr) { this->parse(args); } Token(const Token &obj) { this->token = obj.token; } template T get() const; bool isValid() const; private: char* token; void parse(const char** args); }; using UIScriptHandler = std::function; static Game::uiInfo_s* UI_GetClientInfo(int localClientNum); static void Add(const std::string& name, const UIScriptHandler& callback); static void AddOwnerDraw(int ownerdraw, const std::function& callback); private: static void OwnerDrawHandleKeyStub(int ownerDraw, int flags, float *special, int key); static bool RunMenuScript(const char* name, const char** args); static void RunMenuScriptStub(); static std::unordered_map UIScripts; static std::unordered_map> UIOwnerDraws; }; }