Options.h 161 B

123456789101112
  1. #ifndef OPTIONS_H
  2. #define OPTIONS_H
  3. struct Options final {
  4. const char* name;
  5. bool fullscreen;
  6. bool vsync;
  7. Options(const char* name);
  8. };
  9. #endif