summary refs log tree commit diff stats
path: root/src/consts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/consts.h')
-rw-r--r--src/consts.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/consts.h b/src/consts.h new file mode 100644 index 0000000..f3a073c --- /dev/null +++ b/src/consts.h
@@ -0,0 +1,10 @@
1#ifndef CONSTS_H_8019F1B3
2#define CONSTS_H_8019F1B3
3
4#include "vector.h"
5
6constexpr vec2s TILE_SIZE { 32, 32 };
7constexpr vec2s LEVEL_SIZE { 16, 16 };
8constexpr vec2s WINDOW_SIZE = TILE_SIZE * LEVEL_SIZE;
9
10#endif /* end of include guard: CONSTS_H_8019F1B3 */