mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-11 10:54:01 +00:00
e7e77ccfa7
Fixed exception throwing to be standard
12 lines
215 B
C++
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);
|
|
};
|