diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-11 16:55:16 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-11 16:55:16 -0600 |
commit | 491f532750da38f17e2891042bcb03f095ec4d92 (patch) | |
tree | 8319ee79d4ea65afd8f6eaf75c5a94d9a72ea1a1 /src/systems/keyboardInput.js | |
parent | ec7b01918cc2aec22d4c408bdd460bf767377fbc (diff) | |
download | bbiy-491f532750da38f17e2891042bcb03f095ec4d92.tar.gz bbiy-491f532750da38f17e2891042bcb03f095ec4d92.zip |
Move particle stuff to a system to simplify spawning particles
Diffstat (limited to 'src/systems/keyboardInput.js')
-rw-r--r-- | src/systems/keyboardInput.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/keyboardInput.js b/src/systems/keyboardInput.js index 50afda1..80feeef 100644 --- a/src/systems/keyboardInput.js +++ b/src/systems/keyboardInput.js @@ -33,4 +33,4 @@ game.system.KeyboardInput = (undoSystem) => { }; window.addEventListener("keydown", keyPress); return { keys, update }; -}
\ No newline at end of file +} |