mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-07 16:19:07 +00:00
23 lines
305 B
C++
23 lines
305 B
C++
#ifndef __RETRO_CCHARACTERFACTORY_HPP__
|
|
#define __RETRO_CCHARACTERFACTORY_HPP__
|
|
|
|
#include "../IFactory.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class CCharacterFactory : public IFactory
|
|
{
|
|
public:
|
|
class CDummyFactory : public IFactory
|
|
{
|
|
};
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CCHARACTERFACTORY_HPP__
|