mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 13:07:41 +00:00
Start matching CScriptPlatform; more CScriptMazeNode
Former-commit-id: 135d63412c
This commit is contained in:
20
include/Kyoto/Math/CMatrix3f.hpp
Normal file
20
include/Kyoto/Math/CMatrix3f.hpp
Normal 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
|
||||
Reference in New Issue
Block a user