mirror of https://github.com/AxioDL/metaforce.git
15 lines
340 B
C++
15 lines
340 B
C++
#pragma once
|
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
#include "Runtime/Collision/CCollisionPrimitive.hpp"
|
|
|
|
namespace metaforce {
|
|
class CCollidableCollisionSurface {
|
|
static inline u32 sTableIndex = UINT32_MAX;
|
|
|
|
public:
|
|
static const CCollisionPrimitive::Type& GetType();
|
|
static void SetStaticTableIndex(u32 index);
|
|
};
|
|
} // namespace metaforce
|