mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 04:22:28 +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
|
|
@ -10,16 +10,16 @@ class CStatus;
|
|||
class XMLNode;
|
||||
class CImVector;
|
||||
|
||||
int32_t LoadXML_Color(XMLNode*, CImVector&);
|
||||
int32_t LoadXML_Color(XMLNode* node, CImVector& color);
|
||||
|
||||
int32_t LoadXML_Dimensions(XMLNode*, float&, float&, CStatus*);
|
||||
int32_t LoadXML_Dimensions(XMLNode* node, float& x, float& y, CStatus* status);
|
||||
|
||||
int32_t LoadXML_Insets(XMLNode*, float&, float&, float&, float&, CStatus*);
|
||||
int32_t LoadXML_Insets(XMLNode* node, float& left, float& right, float& top, float& bottom, CStatus* status);
|
||||
|
||||
CSimpleFontString* LoadXML_String(XMLNode*, CSimpleFrame*, CStatus*);
|
||||
CSimpleFontString* LoadXML_String(XMLNode* node, CSimpleFrame* frame, CStatus* status);
|
||||
|
||||
CSimpleTexture* LoadXML_Texture(XMLNode*, CSimpleFrame*, CStatus*);
|
||||
CSimpleTexture* LoadXML_Texture(XMLNode* node, CSimpleFrame* frame, CStatus* status);
|
||||
|
||||
int32_t LoadXML_Value(XMLNode*, float&, CStatus*);
|
||||
int32_t LoadXML_Value(XMLNode* node, float& value, CStatus* status);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue