blob: 2b07fc9691424f540fbd0c4377fffa5a284d57f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef RENDERING_H
#define RENDERING_H
class Rendering {
public:
static int RENDER_SCALE;
static int GRID_WIDTH;
static int GRID_HEIGHT;
static int WIDTH;
static int HEIGHT;
static void set_grid_width(int new_value);
static void set_grid_height(int new_value);
static void set_render_scale(int new_value);
private:
};
#endif /* RENDERING_H */
|