]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/client_config.h
Add vsync setting
[dragonblocks_alpha.git] / src / client / client_config.h
1 #ifndef _CLIENT_CONFIG_H_
2 #define _CLIENT_CONFIG_H_
3
4 #include <stdbool.h>
5
6 extern struct ClientConfig {
7         unsigned int antialiasing;
8         bool mipmap;
9         double render_distance;
10         bool vsync;
11 } client_config;
12
13 #endif