2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:07:43 +00:00

Adjust runtime directory layout

This commit is contained in:
Jack Andersen
2016-04-16 13:48:29 -10:00
parent 042030934b
commit 7afdc556fd
30 changed files with 68 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
#include "CPathFindArea.hpp"
#include "IVParamObj.hpp"
#include "CToken.hpp"
namespace urde
{
CPathFindArea::CPathFindArea(const std::unique_ptr<u8[]>&& buf, int len)
{
x13c_data = buf.get();
}
std::unique_ptr<IObj> FPathFindAreaFactory(const SObjectTag& /*tag*/, const std::unique_ptr<u8[]>& buf, const CVParamTransfer &xfer)
{
return TToken<CPathFindArea>::GetIObjObjectFor(std::unique_ptr<CPathFindArea>(new CPathFindArea(std::move(buf), *reinterpret_cast<int*>(xfer.GetObj()))));
}
}