mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-11 07:25:51 +00:00
22 lines
523 B
C++
22 lines
523 B
C++
#ifndef __URDE_CCOLLIDABLEOBBTREEGROUP_HPP__
|
|
#define __URDE_CCOLLIDABLEOBBTREEGROUP_HPP__
|
|
|
|
#include "IOStreams.hpp"
|
|
#include "CFactoryMgr.hpp"
|
|
namespace urde
|
|
{
|
|
class COBBTree;
|
|
class CCollidableOBBTreeGroup
|
|
{
|
|
std::vector<COBBTree> x0_trees;
|
|
public:
|
|
CCollidableOBBTreeGroup(CInputStream& in);
|
|
};
|
|
|
|
CFactoryFnReturn FCollidableOBBTreeGroupFactory(const SObjectTag &tag, CInputStream &in,
|
|
const CVParamTransfer &vparms);
|
|
|
|
}
|
|
|
|
#endif // __URDE_CCOLLIDABLEOBBTREEGROUP_HPP__
|