mirror of https://github.com/bsnes-emu/bsnes.git
21 lines
348 B
C++
21 lines
348 B
C++
|
namespace hiro {
|
||
|
|
||
|
struct Settings : Configuration::Document {
|
||
|
vector<uint16_t> keycodes;
|
||
|
|
||
|
struct Geometry : Configuration::Node {
|
||
|
signed frameX;
|
||
|
signed frameY;
|
||
|
signed frameWidth;
|
||
|
signed frameHeight;
|
||
|
signed menuHeight;
|
||
|
signed statusHeight;
|
||
|
} geometry;
|
||
|
|
||
|
Settings();
|
||
|
auto load() -> void;
|
||
|
auto save() -> void;
|
||
|
};
|
||
|
|
||
|
}
|