aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
blob: c18afe3fb9693ba94f74d0e3dd7e6df7ef414b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
enum Tool_Types {
	TOOL_TYPE_PENCIL,
	TOOL_TYPE_ERASER,
	TOOL_TYPE_FILL,
	TOOL_TYPE_ZOOMIN,
	TOOL_TYPE_ZOOMOUT,
	TOOL_TYPE_CLOWN,
	TOOL_TYPE_CPICKER,
	TOOL_TYPE_EMPTY,
};

extern unsigned char tool_array[];
extern unsigned char tool_cur;

void            tool_change(unsigned char);
unsigned char   tool_array_size();