21 lines
419 B
C
21 lines
419 B
C
#ifndef DEFINES_H
|
|
#define DEFINES_H
|
|
|
|
/* Below this line, there are only defines that users don't have to
|
|
care about normally.
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
/* perform clipping outside this range, also this is the size of the
|
|
* drawing area */
|
|
|
|
#define XMIN 4
|
|
#define XMAX 56
|
|
#define YMIN 4
|
|
#define YMAX 56
|
|
|
|
#define WINDOWSIZE_X 64
|
|
#define WINDOWSIZE_Y 64
|
|
|
|
#endif
|
|
|