metaforce/Runtime/CResFactory.cpp

19 lines
330 B
C++
Raw Normal View History

#include "CResFactory.hpp"
2015-08-30 20:44:42 -07:00
#include "IObj.hpp"
2016-03-04 15:04:53 -08:00
namespace urde
{
2015-08-22 23:42:29 -07:00
std::unique_ptr<IObj> CResFactory::Build(const SObjectTag&, const CVParamTransfer&)
2015-08-21 18:58:41 -07:00
{
2015-08-30 20:44:42 -07:00
return std::unique_ptr<IObj>();
2015-08-21 18:58:41 -07:00
}
void CResFactory::BuildAsync(const SObjectTag&, const CVParamTransfer&, IObj**)
{
}
void CResFactory::CancelBuild(const SObjectTag&)
{
}
}