Continue work on CActor::UpdateAnimation; lots of headers n stuff

Former-commit-id: 85284f7640
This commit is contained in:
2022-08-14 14:38:41 -04:00
parent 97847d1d61
commit eb6819f1fd
43 changed files with 1190 additions and 148 deletions

View File

@@ -14,6 +14,8 @@ public:
explicit CVector3f(f32 x, f32 y, f32 z) : mX(x), mY(y), mZ(z) {}
CVector3f(const CVector2f& v, f32 z) : mX(v.GetX()), mY(v.GetY()), mZ(z) {}
CVector3f(const CVector3f& other) : mX(other.mX), mY(other.mY), mZ(other.mZ) {}
CVector3f(CInputStream& in);
void PutTo(COutputStream& out) const;