2016-12-27 16:09:31 +00:00
|
|
|
#ifndef DEFINES_H
|
|
|
|
#define DEFINES_H
|
|
|
|
|
|
|
|
/* Below this line, there are only defines that users don't have to
|
2017-02-21 00:16:01 +00:00
|
|
|
care about normally.
|
2016-12-27 16:09:31 +00:00
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|