Add SNES::SetSamples and accessors for snes object

This commit is contained in:
scawful
2024-04-20 07:40:27 -04:00
parent c6df32ffe8
commit 2de3b283cd
3 changed files with 9 additions and 0 deletions

View File

@@ -69,6 +69,9 @@ class Emulator : public SharedRom {
}
void Run();
auto snes() -> SNES& { return snes_; }
auto running() const -> bool { return running_; }
private:
void RenderNavBar();
void HandleEvents();