mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-07 18:19:07 +00:00
19 lines
215 B
C++
19 lines
215 B
C++
#ifndef __RETRO_CRESFACTORY_HPP__
|
|
#define __RETRO_CRESFACTORY_HPP__
|
|
|
|
#include "IFactory.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class CResFactory : public IFactory
|
|
{
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CRESFACTORY_HPP__
|