mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-19 12:05:24 +00:00
More stubs and class discoveries
This commit is contained in:
31
Runtime/GuiSys/CGuiFunctionDef.hpp
Normal file
31
Runtime/GuiSys/CGuiFunctionDef.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef __URDE_CGUIFUNCTIONDEF_HPP__
|
||||
#define __URDE_CGUIFUNCTIONDEF_HPP__
|
||||
|
||||
#include "CGuiFuncParm.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CGuiFunctionDef
|
||||
{
|
||||
int x0_funcId;
|
||||
unsigned x4_parmCount = 0;
|
||||
std::array<CGuiFuncParm, 8> x8_parms;
|
||||
bool x48_flag;
|
||||
public:
|
||||
const CGuiFuncParm& GetParm(int parm)
|
||||
{
|
||||
return x8_parms[parm];
|
||||
}
|
||||
|
||||
CGuiFunctionDef(int funcId, bool,
|
||||
const CGuiFuncParm& a, const CGuiFuncParm& b,
|
||||
const CGuiFuncParm& c, const CGuiFuncParm& d);
|
||||
CGuiFunctionDef(int funcId, bool,
|
||||
const CGuiFuncParm& a, const CGuiFuncParm& b);
|
||||
CGuiFunctionDef(int funcId, bool);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CGUIFUNCTIONDEF_HPP__
|
||||
Reference in New Issue
Block a user