mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(ui): add CSimpleMessageScrollFrame script methods
This commit is contained in:
parent
148285ad01
commit
78f1d095d6
7 changed files with 326 additions and 12 deletions
|
|
@ -5,8 +5,21 @@
|
|||
|
||||
class CSimpleMessageScrollFrame : public CSimpleHyperlinkedFrame {
|
||||
public:
|
||||
// Static variables
|
||||
static int32_t s_metatable;
|
||||
static int32_t s_objectType;
|
||||
|
||||
// Static functions
|
||||
static void CreateScriptMetaTable();
|
||||
static int32_t GetObjectType();
|
||||
static void RegisterScriptMethods(lua_State* L);
|
||||
|
||||
// Member functions
|
||||
CSimpleMessageScrollFrame(CSimpleFrame* parent);
|
||||
|
||||
// Virtual member functions
|
||||
virtual bool IsA(int32_t type);
|
||||
virtual int32_t GetScriptMetaTable();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue