mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-24 18:41:48 +00:00
9 lines
128 B
C++
9 lines
128 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "RomData.h"
|
|
|
|
class iNesLoader
|
|
{
|
|
public:
|
|
RomData LoadRom(vector<uint8_t>& romFile);
|
|
}; |