summaryrefslogtreecommitdiff
path: root/engine/interfaces/Draw.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/interfaces/Draw.ts')
-rw-r--r--engine/interfaces/Draw.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/engine/interfaces/Draw.ts b/engine/interfaces/Draw.ts
new file mode 100644
index 0000000..6561a01
--- /dev/null
+++ b/engine/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;
+}