mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 19:22: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
|
|
@ -22,21 +22,21 @@ class CSimpleRegion : public CScriptRegion {
|
|||
|
||||
// Virtual member functions
|
||||
virtual ~CSimpleRegion();
|
||||
virtual void OnColorChanged(bool);
|
||||
virtual void OnColorChanged(bool a2);
|
||||
virtual void OnScreenSizeChanged() {};
|
||||
virtual void Draw(CRenderBatch*) = 0;
|
||||
virtual void Draw(CRenderBatch* batch) = 0;
|
||||
|
||||
// Member functions
|
||||
CSimpleRegion(CSimpleFrame*, uint32_t, int32_t);
|
||||
CSimpleRegion(CSimpleFrame* frame, uint32_t drawlayer, int32_t show);
|
||||
void GetVertexColor(CImVector& color) const;
|
||||
void Hide(void);
|
||||
void HideThis(void);
|
||||
void Hide();
|
||||
void HideThis();
|
||||
bool IsShown();
|
||||
void OnRegionChanged(void);
|
||||
void SetVertexColor(const CImVector&);
|
||||
void SetFrame(CSimpleFrame*, uint32_t, int32_t);
|
||||
void Show(void);
|
||||
void ShowThis(void);
|
||||
void OnRegionChanged();
|
||||
void SetVertexColor(const CImVector& color);
|
||||
void SetFrame(CSimpleFrame* frame, uint32_t drawlayer, int32_t show);
|
||||
void Show();
|
||||
void ShowThis();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue