Mesen-X/Core/MapperFactory.h

12 lines
264 B
C
Raw Normal View History

#include "stdafx.h"
#include "BaseMapper.h"
class MapperFactory
{
private:
static BaseMapper* GetMapperFromID(uint8_t mapperID);
public:
2015-12-27 18:41:38 -05:00
static shared_ptr<BaseMapper> InitializeFromFile(string romFilename, stringstream *filestream, string ipsFilename);
};