summaryrefslogtreecommitdiff
path: root/engine/structures/RefreshingCollisionFinderBehavior.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-08-29 12:05:02 -0600
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-08-29 12:05:02 -0600
commitfd1bb1cca9521348ae2849ef30be09264503681e (patch)
tree6859c24c53fdd2a83ed0a92ee10272aa70b6c55d /engine/structures/RefreshingCollisionFinderBehavior.ts
parent8a4ab8d79b5ce1dabb431168398b5d5111fe326c (diff)
downloadjumpstorm-fd1bb1cca9521348ae2849ef30be09264503681e.tar.gz
jumpstorm-fd1bb1cca9521348ae2849ef30be09264503681e.zip
don't update controllable entities on the client
Diffstat (limited to 'engine/structures/RefreshingCollisionFinderBehavior.ts')
-rw-r--r--engine/structures/RefreshingCollisionFinderBehavior.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/structures/RefreshingCollisionFinderBehavior.ts b/engine/structures/RefreshingCollisionFinderBehavior.ts
index 573ddd8..2215994 100644
--- a/engine/structures/RefreshingCollisionFinderBehavior.ts
+++ b/engine/structures/RefreshingCollisionFinderBehavior.ts
@@ -11,4 +11,5 @@ export interface RefreshingCollisionFinderBehavior {
insert(boxedEntry: BoxedEntry): void;
getNeighborIds(boxedEntry: BoxedEntry): Set<string>;
setTopLeft(topLeft: Coord2D): void;
+ setDimension(dimension: Dimension2D): void;
}