mirror of
https://github.com/Marat-Tanalin/bsnes-mt.git
synced 2025-04-02 10:21:42 -04:00
21 lines
304 B
C++
21 lines
304 B
C++
namespace hiro {
|
|
|
|
struct Settings {
|
|
Settings();
|
|
~Settings();
|
|
|
|
vector<uint16_t> keycodes;
|
|
|
|
struct Geometry {
|
|
int frameX = 4;
|
|
int frameY = 24;
|
|
int frameWidth = 8;
|
|
int frameHeight = 28;
|
|
int menuHeight = 9;
|
|
int statusHeight = 9;
|
|
} geometry;
|
|
};
|
|
|
|
static Settings settings;
|
|
|
|
}
|