mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-23 15:25:52 +00:00
18 lines
436 B
C++
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));
|
|
}
|
|
|
|
}
|