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