aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools.h')
-rw-r--r--src/tools.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tools.h b/src/tools.h
new file mode 100644
index 0000000..c18afe3
--- /dev/null
+++ b/src/tools.h
@@ -0,0 +1,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();