mirror of https://github.com/PrimeDecomp/prime.git
21 lines
305 B
C++
21 lines
305 B
C++
#ifndef _CCOLLISIONSURFACE
|
|
#define _CCOLLISIONSURFACE
|
|
|
|
#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 // _CCOLLISIONSURFACE
|