mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
11 lines
181 B
C++
11 lines
181 B
C++
#pragma once
|
|
#include "pch.h"
|
|
|
|
class VirtualFile;
|
|
struct RomData;
|
|
|
|
class RomLoader
|
|
{
|
|
public:
|
|
static bool LoadFile(VirtualFile &romFile, RomData& romData, bool databaseEnabled);
|
|
};
|