2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 05:11:22 +00:00
metaforce/Runtime/Collision/CCollidableCollisionSurface.hpp
Lioncash a633b8e8fd General: Normalize RuntimeCommon include paths
Performs the same normalizing done to the RuntimeCommonB target, now all
of the runtime headers have normalized include paths.
2019-09-28 04:14:29 -04:00

16 lines
358 B
C++

#pragma once
#include "Runtime/GCNTypes.hpp"
#include "Runtime/Collision/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