2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 23:47:43 +00:00

CGuiModel imps

This commit is contained in:
Jack Andersen
2016-03-16 16:18:01 -10:00
parent b4514fc6a6
commit 79d90f46d3
16 changed files with 190 additions and 39 deletions

View File

@@ -9,16 +9,23 @@ namespace urde
struct CModelFlags
{
u8 f1;
u8 f1; /* Blend state 3/5 enable additive */
u8 f2;
u16 f3;
zeus::CColor color;
u16 f3; /* Depth state */
zeus::CColor color; /* Set into kcolor slot specified by material */
/* depth flags
0x8: greater
0x10: non-inclusive
*/
};
class CModel
{
public:
void Draw(const CModelFlags& flags) const;
void Touch(int) const;
bool IsLoaded(int) const;
};
}