Mesen/Core/MapperFactory.h
Souryo e7e77ccfa7 Converted all wide strings to utf8 strings
Fixed exception throwing to be standard
2015-07-11 08:27:22 -04:00

12 lines
215 B
C++

#include "stdafx.h"
#include "BaseMapper.h"
class MapperFactory
{
private:
static BaseMapper* GetMapperFromID(uint8_t mapperID);
public:
static shared_ptr<BaseMapper> InitializeFromFile(string filename);
};