2015-08-17 20:33:58 +00:00
|
|
|
#ifndef __RETRO_CASSETFACTORY_HPP__
|
|
|
|
#define __RETRO_CASSETFACTORY_HPP__
|
|
|
|
|
2015-08-18 05:54:43 +00:00
|
|
|
#include "../IFactory.hpp"
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
namespace Retro
|
|
|
|
{
|
2015-08-23 06:42:29 +00:00
|
|
|
class CCharacterFactoryBuilder : public IFactory
|
2015-08-17 23:46:41 +00:00
|
|
|
{
|
2015-08-25 07:04:50 +00:00
|
|
|
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 {}
|
2015-08-17 23:46:41 +00:00
|
|
|
};
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
|
|
|
|
2015-08-17 20:33:58 +00:00
|
|
|
#endif // __RETRO_CASSETFACTORY_HPP__
|