diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 20:45:47 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 20:45:47 -0700 |
commit | e6e29440563e33bb67e0ad51f9fb6c5c2c3fe809 (patch) | |
tree | 5deaee322ff1a039dc44a3cb52ecc48a671fda2a /src/engine/components | |
parent | 823620b2a6ebb7ece619991e47a37ad46542b69f (diff) | |
download | the-abstraction-engine-e6e29440563e33bb67e0ad51f9fb6c5c2c3fe809.tar.gz the-abstraction-engine-e6e29440563e33bb67e0ad51f9fb6c5c2c3fe809.zip |
level one (applications prototype finished!)
Diffstat (limited to 'src/engine/components')
-rw-r--r-- | src/engine/components/Grid.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine/components/Grid.ts b/src/engine/components/Grid.ts index a62cc7b..9fad5ce 100644 --- a/src/engine/components/Grid.ts +++ b/src/engine/components/Grid.ts @@ -6,6 +6,7 @@ export class Grid extends Component { public gridPosition: Coord2D; public movingDirection: Direction; + public previousDirection: Direction; constructor(position: Coord2D = { x: 0, y: 0 }) { super(ComponentNames.Grid); @@ -13,5 +14,6 @@ export class Grid extends Component { this.initialized = false; this.gridPosition = position; this.movingDirection = Direction.NONE; + this.previousDirection = this.movingDirection; } } |