diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 21:29:40 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 21:29:40 -0700 |
commit | c3242b171cdbb36a26fda04c7148b9b40a5f5c33 (patch) | |
tree | 5060cb6d34e01f36687c0ce79e5ae0b1b8767e63 /src/engine/systems/SystemNames.ts | |
parent | d08e0105cbc59c6cc804f04aaf1e4e625a13960c (diff) | |
download | the-abstraction-engine-c3242b171cdbb36a26fda04c7148b9b40a5f5c33.tar.gz the-abstraction-engine-c3242b171cdbb36a26fda04c7148b9b40a5f5c33.zip |
player movement
Diffstat (limited to 'src/engine/systems/SystemNames.ts')
-rw-r--r-- | src/engine/systems/SystemNames.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/engine/systems/SystemNames.ts b/src/engine/systems/SystemNames.ts index 1ed9894..0de5857 100644 --- a/src/engine/systems/SystemNames.ts +++ b/src/engine/systems/SystemNames.ts @@ -1,8 +1,6 @@ export namespace SystemNames { export const Render = "Render"; - export const Physics = "Physics"; export const Input = "Input"; - export const Collision = "Collision"; - export const WallBounds = "WallBounds"; export const FacingDirection = "FacingDirection"; + export const Grid = "Grid"; } |