blob: fdab6e2374d377a40ae838413a0e66555c88071b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef CONFIG_H
#define CONFIG_H
namespace Config {
const unsigned int window_w = 1280;
const unsigned int window_h = 720;
const unsigned int viewport_x = 20;
const unsigned int viewport_y = 20;
const unsigned int viewport_w = 600;
const unsigned int viewport_h = 680;
const unsigned int viewport_overscan = 10;
const float viewport_aspect = float(viewport_h) / float(viewport_w);
const unsigned int fps_x = 641;
const unsigned int fps_y = 1;
};
#endif
|