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-22 01:58:41 +00:00
|
|
|
class CCharacterFactoryBuilder
|
2015-08-17 23:46:41 +00:00
|
|
|
{
|
2015-08-18 05:54:43 +00:00
|
|
|
public:
|
2015-08-22 01:58:41 +00:00
|
|
|
CCharacterFactoryBuilder();
|
2015-08-18 05:54:43 +00:00
|
|
|
class CDummyFactory : public IFactory
|
|
|
|
{
|
|
|
|
};
|
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__
|