]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/client_config.h
Add configuration files for client and server
[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 } client_config;
11
12 #endif