Halfway match CAABox; continue CBallCamera

Former-commit-id: 602109d8f0
This commit is contained in:
2022-09-29 19:55:38 -04:00
parent 8f3807da18
commit 1f56cefe8c
41 changed files with 1023 additions and 173 deletions

View File

@@ -0,0 +1,20 @@
#ifndef _CCOLLISIONSURFACE_HPP
#define _CCOLLISIONSURFACE_HPP
#include "types.h"
#include "Kyoto/Math/CVector3f.hpp"
class CCollisionSurface {
public:
typedef CVector3f TVerts[3];
// TODO
private:
TVerts x0_data;
uint x24_flags;
};
CHECK_SIZEOF(CCollisionSurface, 0x28)
#endif