2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-06-24 20:09:38 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
#include "Runtime/Collision/CCollisionPrimitive.hpp"
|
2016-06-24 20:09:38 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-12-08 05:30:43 +00:00
|
|
|
class CCollidableCollisionSurface {
|
2020-08-01 09:31:23 +00:00
|
|
|
static inline u32 sTableIndex = UINT32_MAX;
|
2018-12-08 05:30:43 +00:00
|
|
|
|
2016-06-24 20:09:38 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
static const CCollisionPrimitive::Type& GetType();
|
|
|
|
static void SetStaticTableIndex(u32 index);
|
2016-06-24 20:09:38 +00:00
|
|
|
};
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|