mirror of https://github.com/AxioDL/metaforce.git
21 lines
245 B
C++
21 lines
245 B
C++
|
#ifndef __URDE_CGAMECOLLISION_HPP__
|
||
|
#define __URDE_CGAMECOLLISION_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CInternalCollisionStructure
|
||
|
{
|
||
|
};
|
||
|
|
||
|
class CGameCollision
|
||
|
{
|
||
|
public:
|
||
|
static void InitCollision();
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CGAMECOLLISION_HPP__
|