mirror of
https://github.com/0ldsk00l/nestopia.git
synced 2025-04-02 10:31:51 -04:00
Adds a mute-on-startup entry in settings, a --mute (-m) command line parameter, 'm' hotkey to mute on the fly, and a corresponding menubar entry.
18 lines
306 B
C++
18 lines
306 B
C++
#pragma once
|
|
|
|
class UiAdapter {
|
|
public:
|
|
UiAdapter() {}
|
|
~UiAdapter() {}
|
|
|
|
static void fullscreen();
|
|
static void fastforward(bool ff);
|
|
static void pause();
|
|
static void mute();
|
|
static void screenshot();
|
|
static void quit();
|
|
static void show_inputmsg(int show);
|
|
|
|
private:
|
|
|
|
};
|