2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-05 23:35:35 +00:00
metaforce/Runtime/Character/CAssetFactory.hpp
Jack Andersen 3f1025abb3 link fix
2015-08-24 21:04:50 -10:00

20 lines
507 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&) {}
u32 GetResourceIdByName(const char*) const {}
};
}
#endif // __RETRO_CASSETFACTORY_HPP__