aboutsummaryrefslogtreecommitdiff
path: root/drawing/op.ha
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-08 02:28:59 +0100
committerubq323 <ubq323@ubq323.website>2024-04-08 02:28:59 +0100
commit40231bd839dbe5b8aa65e8f3bde31bd33b9a9190 (patch)
tree35b81246f7b741aa1bbb75f697f426b777f98974 /drawing/op.ha
parentd097561c1ee24f20d5dd48fbe35301e8d9cc7cac (diff)
giant refactor, start to use drawing ops for drawing
Diffstat (limited to 'drawing/op.ha')
-rw-r--r--drawing/op.ha4
1 files changed, 4 insertions, 0 deletions
diff --git a/drawing/op.ha b/drawing/op.ha
new file mode 100644
index 0000000..ef39161
--- /dev/null
+++ b/drawing/op.ha
@@ -0,0 +1,4 @@
+export type op_circle = pos;
+export type op_other = void;
+
+export type op = (op_circle| op_other);