mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 21:11:22 +00:00
20 lines
284 B
C++
20 lines
284 B
C++
#ifndef __RETRO_CCHARACTERFACTORY_HPP__
|
|
#define __RETRO_CCHARACTERFACTORY_HPP__
|
|
|
|
#include "../IFactory.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CCharacterFactory : public IFactory
|
|
{
|
|
public:
|
|
class CDummyFactory : public IFactory
|
|
{
|
|
};
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CCHARACTERFACTORY_HPP__
|