diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:45:58 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:45:58 -0700 |
commit | aa08a8943a9a2d4a0e51893eebe6900bca7a7251 (patch) | |
tree | 1bfd2505e7675af45ec1e56434a6549e98d42e7f /src/engine/systems/SystemNames.ts | |
parent | 5148ee2063846d37f9152a9dfa64fcd40cc0454b (diff) | |
download | the-abstraction-engine-aa08a8943a9a2d4a0e51893eebe6900bca7a7251.tar.gz the-abstraction-engine-aa08a8943a9a2d4a0e51893eebe6900bca7a7251.zip |
ecs init
Diffstat (limited to 'src/engine/systems/SystemNames.ts')
-rw-r--r-- | src/engine/systems/SystemNames.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/engine/systems/SystemNames.ts b/src/engine/systems/SystemNames.ts new file mode 100644 index 0000000..41207a4 --- /dev/null +++ b/src/engine/systems/SystemNames.ts @@ -0,0 +1,7 @@ +export namespace SystemNames { + export const Render = "Render"; + export const Physics = "Physics"; + export const Input = "Input"; + export const Collision = "Collision"; + export const WallBounds = "WallBounds"; +} |