From 9e660e594f6d3a43ea1427fb872801a2fcedad93 Mon Sep 17 00:00:00 2001 From: Krow Savcik Date: Tue, 26 Sep 2023 22:32:35 +0300 Subject: initial commit --- src/tools.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/tools.h (limited to 'src/tools.h') 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(); -- cgit v1.2.3