]> git.localhorst.tv Git - tacos.git/blob - src/app/config.hpp
basic floor idea
[tacos.git] / src / app / config.hpp
1 #ifndef TACOS_APP_CONFIG_HPP_
2 #define TACOS_APP_CONFIG_HPP_
3
4 #include <string>
5
6
7 namespace tacos {
8
9 struct Config {
10
11         Config();
12
13         void ReadArgs(int argc, const char *const *argv);
14         void ReadFile(const char *path);
15
16         // system settings
17         std::string asset_path;
18         std::string config_path;
19
20         // video settings
21         bool double_buffer = true;
22         int multi_sample = 0;
23
24 };
25
26 }
27
28 #endif