diff options
Diffstat (limited to 'src/drawables/Selector.ts')
| -rw-r--r-- | src/drawables/Selector.ts | 15 |
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) + } +} + + |
