metaforce/Runtime/Character/CCharacterFactory.hpp

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__