metaforce/Runtime/CResFactory.cpp

19 lines
330 B
C++
Raw Normal View History

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