forked from higan-emu/higan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicarus.hpp
29 lines (24 loc) · 779 Bytes
/
icarus.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <nall/nall.hpp>
#include <nall/cd.hpp>
#include <nall/decode/cue.hpp>
#include <nall/decode/wav.hpp>
#include <nall/vfs.hpp>
using namespace nall;
#include <hiro/hiro.hpp>
using namespace hiro;
#include <higan/information.hpp>
#include <higan/resource/resource.hpp>
#include "resource/resource.hpp"
namespace icarus {
#include "settings/settings.hpp"
#include "media/media.hpp"
#include "cartridge/cartridge.hpp"
#include "compact-disc/compact-disc.hpp"
#include "compact-disc/playstation.hpp"
#include "floppy-disk/floppy-disk.hpp"
#include "program/program.hpp"
extern vector<shared_pointer<Media>> media;
auto construct() -> void;
auto medium(const string& name) -> shared_pointer<Media>;
auto identify(const string& filename) -> string;
}