2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:11:20 +00:00
metaforce/Runtime/Character/CAssetFactory.hpp
2015-08-27 14:11:31 -10:00

20 lines
521 B
C++

#ifndef __RETRO_CASSETFACTORY_HPP__
#define __RETRO_CASSETFACTORY_HPP__
#include "../IFactory.hpp"
namespace Retro
{
class CCharacterFactoryBuilder : public IFactory
{
public:
std::unique_ptr<IObj> Build(const SObjectTag&, const CVParamTransfer&) {}
void BuildAsync(const SObjectTag&, const CVParamTransfer&, IObj**) {}
void CancelBuild(const SObjectTag&) {}
bool CanBuild(const SObjectTag&) {}
const SObjectTag* GetResourceIdByName(const char*) const {}
};
}
#endif // __RETRO_CASSETFACTORY_HPP__