mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-08 04:59:09 +00:00
23 lines
300 B
C++
23 lines
300 B
C++
#ifndef __RETRO_CASSETFACTORY_HPP__
|
|
#define __RETRO_CASSETFACTORY_HPP__
|
|
|
|
#include "../IFactory.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class CCharacterFactoryBuilder : public IFactory
|
|
{
|
|
public:
|
|
class CDummyFactory : public IFactory
|
|
{
|
|
};
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CASSETFACTORY_HPP__
|