#ifndef OPTIONS_H #define OPTIONS_H struct Options final { const char* name; bool fullscreen; Options(const char* name); }; #endif