diff options
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h new file mode 100644 index 0000000..2d2c4f4 --- /dev/null +++ b/src/settings.h @@ -0,0 +1,14 @@ +#include "utils.h" + +#ifndef SETTINGS_H +#define SETTINGS_H + +typedef struct Settings { + // Window. + int windowWidth; + int windowHeight; +} Settings; + +Settings defaultSettings(); + +#endif |