Add CPlayerGun::CPlayerGun

Former-commit-id: 835ea5361f
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-06 11:53:35 +03:00
parent 4f798b9cc4
commit b85a66c2ee
5 changed files with 129 additions and 2 deletions

View File

@@ -15,7 +15,14 @@ private:
CVector3f x8_scale;
bool x14_canLoop;
int x18_defaultAnim;
public:
// CAnimRes()
// : x4_charIdx(-1), x14_canLoop(false), x8_scale(????), x18_defaultAnim(-1) {}
CAnimRes(CAssetId ancs, int charIdx, const CVector3f& scale, const int defaultAnim, bool loop)
: x0_ancsId(ancs), x4_charIdx(charIdx), x8_scale(scale), x14_canLoop(loop), x18_defaultAnim(defaultAnim) {}
};
CHECK_SIZEOF(CAnimRes, 0x1c)
#endif
#endif