Options.h 145 B

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