diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 18:56:58 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 18:56:58 -0700 |
commit | a8d07a790395e14fe7aedd3ba638db466f9c0842 (patch) | |
tree | 644f60a6bca79ceb55f24fcab7bdb3dee52c2d6e /src/engine/components/FacingDirection.ts | |
parent | aa08a8943a9a2d4a0e51893eebe6900bca7a7251 (diff) | |
download | the-abstraction-engine-a8d07a790395e14fe7aedd3ba638db466f9c0842.tar.gz the-abstraction-engine-a8d07a790395e14fe7aedd3ba638db466f9c0842.zip |
boundingbox + draw player
Diffstat (limited to 'src/engine/components/FacingDirection.ts')
-rw-r--r-- | src/engine/components/FacingDirection.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/engine/components/FacingDirection.ts b/src/engine/components/FacingDirection.ts new file mode 100644 index 0000000..a449d21 --- /dev/null +++ b/src/engine/components/FacingDirection.ts @@ -0,0 +1,12 @@ +import { Component, ComponentNames, Sprite } from "."; +import { type Direction } from "../interfaces"; + +export class FacingDirection extends Component { + public readonly directionSprites: Map<Direction, Sprite>; + + constructor() { + super(ComponentNames.FacingDirection); + + this.directionSprites = new Map<Direction, Sprite>(); + } +} |