diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-13 16:47:58 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-13 16:47:58 -0600 |
commit | 98e795029bcc404463ed151ff5255a72498bc641 (patch) | |
tree | 48e50d896d00761eae18c89f89e5dd0ef353b660 /engine/systems/Input.ts | |
parent | c6e9baa0009f7cce0f6ff156a3957ef04a8cb684 (diff) | |
download | jumpstorm-98e795029bcc404463ed151ff5255a72498bc641.tar.gz jumpstorm-98e795029bcc404463ed151ff5255a72498bc641.zip |
Create network component and system
Diffstat (limited to 'engine/systems/Input.ts')
-rw-r--r-- | engine/systems/Input.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/systems/Input.ts b/engine/systems/Input.ts index 4aa9844..35d2e1d 100644 --- a/engine/systems/Input.ts +++ b/engine/systems/Input.ts @@ -9,7 +9,7 @@ import { import { Game } from "../Game"; import { KeyConstants, PhysicsConstants } from "../config"; import { Action } from "../interfaces"; -import { System, SystemNames } from "./"; +import { System, SystemNames } from "."; export class Input extends System { private keys: Set<string>; |