summaryrefslogtreecommitdiff
path: root/src/engine/systems/Input.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/systems/Input.ts')
-rw-r--r--src/engine/systems/Input.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/engine/systems/Input.ts b/src/engine/systems/Input.ts
index c527f29..b11ba84 100644
--- a/src/engine/systems/Input.ts
+++ b/src/engine/systems/Input.ts
@@ -1,4 +1,4 @@
-import { Grid as GridSystem, SystemNames, System } from ".";
+import { Grid as GridSystem, SystemNames, System, Level } from ".";
import { Game } from "..";
import { ComponentNames, Grid, Interactable } from "../components";
import { Control } from "../components/Control";
@@ -31,6 +31,10 @@ export class Input extends System {
}
public update(_dt: number, game: Game) {
+ if (this.hasSomeKey(KeyConstants.ActionKeys.get(Action.RESET))) {
+ game.getSystem<Level>(SystemNames.Level).reset(game);
+ }
+
game.forEachEntityWithComponent(ComponentNames.Control, (entity) =>
this.handleMovement(entity, game),
);