mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 01:29:41 +00:00
12 lines
268 B
C++
12 lines
268 B
C++
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class MapperFactory
|
|
{
|
|
private:
|
|
static BaseMapper* GetMapperFromID(ROMLoader &romLoader);
|
|
|
|
public:
|
|
static shared_ptr<BaseMapper> InitializeFromFile(string romFilename, stringstream *filestream, string ipsFilename);
|
|
};
|