Minor CActor fixes

Former-commit-id: b61e1774c1
This commit is contained in:
2022-12-07 01:14:03 -05:00
parent 4a4e040adf
commit 23d5e95417
7 changed files with 21 additions and 18 deletions

View File

@@ -51,15 +51,15 @@ public:
CStaticRes(CAssetId id, const CVector3f& scale) : x0_cmdlId(id), x4_scale(scale) {}
};
enum EWhichModel {
kWM_Normal,
kWM_XRay,
kWM_Thermal,
kWM_ThermalHot,
};
class CModelData {
public:
enum EWhichModel {
kWM_Normal,
kWM_XRay,
kWM_Thermal,
kWM_ThermalHot,
};
// TODO these probably aren't real
bool HasNormalModel() const { return x1c_normalModel; }