mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
chore(ui): clean up function declarations
This commit is contained in:
parent
f24fbf26c6
commit
d61f0faef1
38 changed files with 471 additions and 471 deletions
|
|
@ -11,17 +11,17 @@ class CSimpleModelFFX : public CSimpleModel {
|
|||
static int32_t s_metatable;
|
||||
|
||||
// Static functions
|
||||
static CSimpleFrame* Create(CSimpleFrame*);
|
||||
static void CreateScriptMetaTable(void);
|
||||
static void RegisterScriptMethods(lua_State*);
|
||||
static void Render(void*);
|
||||
static CSimpleFrame* Create(CSimpleFrame* parent);
|
||||
static void CreateScriptMetaTable();
|
||||
static void RegisterScriptMethods(lua_State* L);
|
||||
static void Render(void* arg);
|
||||
|
||||
// Virtual member functions
|
||||
virtual int32_t GetScriptMetaTable(void);
|
||||
virtual void OnFrameRender(CRenderBatch*, uint32_t);
|
||||
virtual int32_t GetScriptMetaTable();
|
||||
virtual void OnFrameRender(CRenderBatch* batch, uint32_t layer);
|
||||
|
||||
// Member functions
|
||||
CSimpleModelFFX(CSimpleFrame*);
|
||||
CSimpleModelFFX(CSimpleFrame* parent);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue