old-hiro/qt/settings.hpp
Morten Delenk 8cc9b803da
v101r02
2016-08-09 20:28:11 +02:00

21 lines
306 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 = 20;
int statusHeight = 20;
} geometry;
};
static Settings settings;
}