refactor config variables to separate file

This commit is contained in:
Ole Morud
2022-06-08 17:16:38 +02:00
parent b8907c3961
commit c425e2b5b7
2 changed files with 20 additions and 25 deletions

14
config.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef CONFIG_H_
#define CONFIG_H_
#define ON 'x'
#define OFF '.'
#define HEIGHT 40
#define WIDTH 40
#define FRAMERATE 60
#define GRAVITY 0.001f
#define LINENUMBERS 0
#endif