Add CScriptActor

Former-commit-id: febfd1faae
This commit is contained in:
2022-11-04 01:25:39 -04:00
parent dc04591f0d
commit 9cece32038
19 changed files with 398 additions and 48 deletions

View File

@@ -105,4 +105,9 @@ private:
};
CHECK_SIZEOF(CModelFlags, 0x8)
static inline bool operator==(const CModelFlags& lhs, const CModelFlags& rhs) {
return lhs.GetTrans() == rhs.GetTrans() && lhs.GetShaderSet() == rhs.GetShaderSet() &&
lhs.GetOtherFlags() == rhs.GetOtherFlags() && lhs.GetColor() == rhs.GetColor();
}
#endif // _CMODELFLAGS