15 lines
180 B
C
15 lines
180 B
C
|
|
#ifndef CONFIG_H_
|
|
#define CONFIG_H_
|
|
|
|
|
|
#define ON '#'
|
|
#define OFF ' '
|
|
#define HEIGHT 100
|
|
#define WIDTH 100
|
|
#define FRAMERATE 60
|
|
#define GRAVITY 15.0f
|
|
#define LINENUMBERS 0
|
|
|
|
#endif
|