15 lines
179 B
C
15 lines
179 B
C
|
|
#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
|