summaryrefslogtreecommitdiff
path: root/client/lib/interfaces/Draw.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/lib/interfaces/Draw.ts')
-rw-r--r--client/lib/interfaces/Draw.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/client/lib/interfaces/Draw.ts b/client/lib/interfaces/Draw.ts
new file mode 100644
index 0000000..6561a01
--- /dev/null
+++ b/client/lib/interfaces/Draw.ts
@@ -0,0 +1,9 @@
+import type { Coord2D, Dimension2D } from "./";
+
+export interface DrawArgs {
+ center: Coord2D;
+ dimension: Dimension2D;
+ tint?: string;
+ opacity?: number;
+ rotation?: number;
+}