blob: 1cf471376caf5471ad44d50845cd6d1da5fd34f4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #ifndef CONFIG_H
#define CONFIG_H
namespace Config {
	const unsigned int window_w = 1440;
	const unsigned int window_h = 1080;
	
	const float viewport_x = 15.0 / 1080.0;
	const float viewport_y = 15.0 / 1080.0;
	const float viewport_w = 900.0 / 1080.0;
	const float viewport_h = 1050.0 / 1080.0;
	
	const float viewport_aspect = float(viewport_h) / float(viewport_w);
	
	const float fps_x = 0.0;
	const float fps_y = 0.0;
};
#endif
 |