mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-04 16:41:21 +00:00
24 lines
395 B
C++
24 lines
395 B
C++
#ifndef __URDE_CCOLLISIONPRIMITIVE_HPP__
|
|
#define __URDE_CCOLLISIONPRIMITIVE_HPP__
|
|
|
|
#include "Collision/CMaterialList.hpp"
|
|
namespace urde
|
|
{
|
|
|
|
class CCollisionPrimitive
|
|
{
|
|
CMaterialList x8_material;
|
|
public:
|
|
enum class Type
|
|
{
|
|
};
|
|
|
|
static void InitBeginTypes();
|
|
static void InitAddType(Type tp);
|
|
static void InitEndTypes();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CCOLLISIONPRIMITIVE_HPP__
|