metaforce/Runtime/Character/CCharacterFactory.hpp

20 lines
283 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CCHARACTERFACTORY_HPP__
#define __PSHAG_CCHARACTERFACTORY_HPP__
2015-08-17 23:46:41 +00:00
2015-08-18 05:54:43 +00:00
#include "../IFactory.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
2015-08-18 05:54:43 +00:00
{
class CCharacterFactory : public IFactory
{
public:
class CDummyFactory : public IFactory
{
};
2015-08-17 23:46:41 +00:00
};
2015-08-18 05:54:43 +00:00
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CCHARACTERFACTORY_HPP__