2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-23 15:25:52 +00:00
metaforce/Runtime/Collision/CCollidableOBBTreeGroup.cpp
2016-04-20 11:44:18 -10:00

18 lines
436 B
C++

#include "CCollidableOBBTreeGroup.hpp"
#include "CToken.hpp"
namespace urde
{
CCollidableOBBTreeGroup::CCollidableOBBTreeGroup(CInputStream& in)
{
}
CFactoryFnReturn FCollidableOBBTreeGroupFactory(const SObjectTag &tag, CInputStream &in,
const CVParamTransfer &vparms)
{
return TToken<CCollidableOBBTreeGroup>::GetIObjObjectFor(std::make_unique<CCollidableOBBTreeGroup>(in));
}
}