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