diff options
author | Elizabeth Hunt <elizabeth@simponic.xyz> | 2025-03-02 18:49:51 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth@simponic.xyz> | 2025-03-02 18:49:51 -0700 |
commit | 196773c3637f7dcf2a53a6cb9b3a8e8f790cce71 (patch) | |
tree | 49cb79e5728adac877ce321de7ea052e7f8b7e7e /src/engine/TheAbstractionEngine.ts | |
parent | 491a1d05a5f001d8f5155b9169547d461ac7e8b2 (diff) | |
download | the-abstraction-engine-196773c3637f7dcf2a53a6cb9b3a8e8f790cce71.tar.gz the-abstraction-engine-196773c3637f7dcf2a53a6cb9b3a8e8f790cce71.zip |
add a piston
Diffstat (limited to 'src/engine/TheAbstractionEngine.ts')
-rw-r--r-- | src/engine/TheAbstractionEngine.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine/TheAbstractionEngine.ts b/src/engine/TheAbstractionEngine.ts index 886b50f..63c6274 100644 --- a/src/engine/TheAbstractionEngine.ts +++ b/src/engine/TheAbstractionEngine.ts @@ -12,6 +12,7 @@ import { Music, Level, Modal, + RadialObserve, } from "./systems"; export class TheAbstractionEngine { @@ -35,6 +36,7 @@ export class TheAbstractionEngine { const isDev = document.location.hostname.includes("localhost"); [ + new RadialObserve(), new Modal(), new Level(isDev ? LevelNames.CarCadr : LevelNames.LevelSelection), inputSystem, |