system: Add a function to see if the emulator is running.

This commit is contained in:
bunnei 2016-08-29 21:28:31 -04:00
parent 08ad9b36d4
commit 7299895b48
2 changed files with 11 additions and 0 deletions

View file

@ -16,6 +16,7 @@ enum class Result {
};
Result Init(EmuWindow* emu_window);
bool IsPoweredOn();
void Shutdown();
}