mirror of https://github.com/bsnes-emu/bsnes.git
9 lines
175 B
C++
9 lines
175 B
C++
|
struct Program : Emulator::Platform {
|
||
|
//program.cpp
|
||
|
Program(string_vector args);
|
||
|
auto main() -> void;
|
||
|
auto quit() -> void;
|
||
|
};
|
||
|
|
||
|
extern unique_pointer<Program> program;
|