Start matching CScriptPlatform; more CScriptMazeNode

Former-commit-id: 135d63412c
This commit is contained in:
2022-09-18 01:55:13 -04:00
parent ad6fd10f21
commit 41a2efa884
30 changed files with 984 additions and 90 deletions

View File

@@ -0,0 +1,20 @@
#ifndef _CMATRIX3F_HPP
#define _CMATRIX3F_HPP
#include "types.h"
#include "Kyoto/Math/CVector3f.hpp"
class CMatrix3f {
public:
// TODO
private:
// TODO maybe individual f32s
CVector3f m0;
CVector3f m1;
CVector3f m2;
};
CHECK_SIZEOF(CMatrix3f, 0x24);
#endif