settings.hpp 304 B

12345678910111213141516171819202122
  1. namespace hiro {
  2. struct Settings {
  3. Settings();
  4. ~Settings();
  5. vector<uint16_t> keycodes;
  6. struct Geometry {
  7. int frameX = 4;
  8. int frameY = 24;
  9. int frameWidth = 8;
  10. int frameHeight = 28;
  11. int menuHeight = 9;
  12. int statusHeight = 9;
  13. } geometry;
  14. };
  15. static Settings settings;
  16. }