AST/main.h

16 lines
245 B
C

#ifndef MAIN_H_
#define MAIN_H_
#define A_WIDTH 30
#define A_HEIGHT 30
#define TILE_SIZE 32
#define WINDOWS_WIDTH TILE_SIZE * A_WIDTH
#define WINDOWS_HEIGHT TILE_SIZE * A_HEIGHT
enum {DOWN, UP, LEFT, RIGHT};
int random_lim(int max);
#endif