mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 09:51:20 +00:00
16 lines
297 B
C++
16 lines
297 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);
|
|
};
|
|
}
|