prime/include/Kyoto/Math/CTransform4f.hpp
Luke Street 9d3a5c7670 Move back to 1.3.2 compiler
Former-commit-id: 1107bdaa26d4d991ec9f7d00e4736d2012561f98
2022-08-09 19:07:49 -04:00

21 lines
299 B
C++

#ifndef __CTRANSFORM4F_HPP__
#define __CTRANSFORM4F_HPP__
#include "types.h"
#include "Kyoto/Math/CVector3f.hpp"
class CTransform4f {
public:
CVector3f m0;
f32 posX;
CVector3f m1;
f32 posY;
CVector3f m2;
f32 posZ;
};
extern CTransform4f skIdentity4f;
#endif // __CTRANSFORM4F_HPP__