More CPhysicsActor

Former-commit-id: 248a703cb4
This commit is contained in:
2022-10-05 10:24:06 -07:00
parent ceb9bf4132
commit 2d128edc26
6 changed files with 88 additions and 36 deletions

View File

@@ -9,8 +9,9 @@ class CMatrix3f {
static const CMatrix3f sIdentity;
public:
CMatrix3f(const CMatrix3f&);
const CMatrix3f& operator=(const CMatrix3f& other);
static CMatrix3f Identity() { return sIdentity; }
static const CMatrix3f& Identity() { return sIdentity; }
private:
// TODO maybe individual f32s
CVector3f m0;