blob: 2d2c4f4c5b814406e72e3551c00be24d0eb9a2c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "utils.h"
#ifndef SETTINGS_H
#define SETTINGS_H
typedef struct Settings {
// Window.
int windowWidth;
int windowHeight;
} Settings;
Settings defaultSettings();
#endif
|