mirror of https://github.com/bsnes-emu/bsnes.git
21 lines
433 B
C++
21 lines
433 B
C++
struct System {
|
|
auto loaded() const -> bool { return information.loaded; }
|
|
auto colorburst() const -> double { return information.colorburst; }
|
|
|
|
auto run() -> void;
|
|
|
|
auto load() -> bool;
|
|
auto save() -> void;
|
|
auto unload() -> void;
|
|
auto power() -> void;
|
|
auto reset() -> void;
|
|
|
|
struct Information {
|
|
bool loaded = false;
|
|
string manifest;
|
|
double colorburst = 0.0;
|
|
} information;
|
|
};
|
|
|
|
extern System system;
|