mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
15 lines
309 B
C++
15 lines
309 B
C++
class Reader : public library {
|
|
public:
|
|
string compressionList;
|
|
string extensionList;
|
|
|
|
function<const char* ()> supported;
|
|
function<bool (string&, uint8_t*&, unsigned&)> load;
|
|
|
|
const char* direct_supported();
|
|
bool direct_load(string&, uint8_t*&, unsigned&);
|
|
|
|
Reader();
|
|
};
|
|
|
|
extern Reader reader;
|