aboutsummaryrefslogtreecommitdiffstats
path: root/src/drawables/Selector.ts
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-05-24 18:25:43 +0200
committerMaksymilian Jopek <maks@jopek.eu>2022-05-24 18:25:43 +0200
commit2f8b8c87fb2062313afea7b625ccb20d1bea95b9 (patch)
tree973e20986e4b9279b9322a9fd140e6f989eaf492 /src/drawables/Selector.ts
download1942-2f8b8c87fb2062313afea7b625ccb20d1bea95b9.tar.gz
1942-2f8b8c87fb2062313afea7b625ccb20d1bea95b9.tar.zst
1942-2f8b8c87fb2062313afea7b625ccb20d1bea95b9.zip
Initial commit
Diffstat (limited to 'src/drawables/Selector.ts')
-rw-r--r--src/drawables/Selector.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/drawables/Selector.ts b/src/drawables/Selector.ts
new file mode 100644
index 0000000..b72d839
--- /dev/null
+++ b/src/drawables/Selector.ts
@@ -0,0 +1,15 @@
+import { canvas, ctx } from "../consts";
+import Drawable from "../Drawable";
+import { IMGS } from "../Images";
+
+export class Selector extends Drawable {
+ sprite = IMGS.selector
+ width = canvas.width
+ height = 24
+ draw() {
+ if (this.sprite.src == null) this.sprite = IMGS.selector;
+ ctx.drawImage(this.sprite, this.x, this.y)
+ }
+}
+
+