summaryrefslogtreecommitdiff
path: root/src/engine/systems
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-02 06:00:47 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-02 06:07:42 -0700
commit4233aca561b5650924f3cc4232cfd294d706c863 (patch)
treeaf67bae5565cf1b7d5400d9678d1fcc038584438 /src/engine/systems
parentcbb88091bdf69cc8752ef1cc3662dc0b99e3ead6 (diff)
downloadthe-abstraction-engine-4233aca561b5650924f3cc4232cfd294d706c863.tar.gz
the-abstraction-engine-4233aca561b5650924f3cc4232cfd294d706c863.zip
refocus canvas on lambda factory clsoe
Diffstat (limited to 'src/engine/systems')
-rw-r--r--src/engine/systems/Collision.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/systems/Collision.ts b/src/engine/systems/Collision.ts
index 7b1b963..1912fb6 100644
--- a/src/engine/systems/Collision.ts
+++ b/src/engine/systems/Collision.ts
@@ -1,7 +1,7 @@
import { System, SystemNames } from ".";
import { Game } from "..";
import { Entity, EntityNames } from "../entities";
-import { BoundingBox, Colliding, ComponentNames, Grid } from "../components";
+import { BoundingBox, ComponentNames, Grid } from "../components";
const collisionMap: Record<string, Set<string>> = {
[EntityNames.Key]: new Set([EntityNames.LockedDoor]),