diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-07-20 22:22:26 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-07-20 22:22:26 -0700 |
commit | 619a039942c3c02552f72275634a9f6c0788c570 (patch) | |
tree | 43151191c920d0d705db71306f58409e97b60d03 /engine/config/constants.ts | |
parent | 72c6c7de12e9833f52bf2d0718d70f044f8ab57e (diff) | |
download | jumpstorm-619a039942c3c02552f72275634a9f6c0788c570.tar.gz jumpstorm-619a039942c3c02552f72275634a9f6c0788c570.zip |
very basic websocket setup
Diffstat (limited to 'engine/config/constants.ts')
-rw-r--r-- | engine/config/constants.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engine/config/constants.ts b/engine/config/constants.ts index 27c8160..9a3169b 100644 --- a/engine/config/constants.ts +++ b/engine/config/constants.ts @@ -32,3 +32,8 @@ export namespace PhysicsConstants { export const PLAYER_JUMP_ACC = -0.01; export const PLAYER_JUMP_INITIAL_VEL = -0.9; } + +export namespace Miscellaneous { + export const WIDTH = 600; + export const HEIGHT = 800; +} |