e7e77ccfa7
Fixed exception throwing to be standard
11 lines
215 B
C++
11 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);
|
|
};
|