diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-25 16:48:17 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-25 16:48:17 -0600 |
commit | 773ce84f4bf559337e132edd7fcce02a0a2598fd (patch) | |
tree | 5fd0b452b459cc5a5b6a1ed98f2d7b9af950864d /engine/structures/RefreshingCollisionFinderBehavior.ts | |
parent | dec7b614d895a1b507137e4a96a8999ff63aa179 (diff) | |
download | jumpstorm-773ce84f4bf559337e132edd7fcce02a0a2598fd.tar.gz jumpstorm-773ce84f4bf559337e132edd7fcce02a0a2598fd.zip |
prettier formatting
Diffstat (limited to 'engine/structures/RefreshingCollisionFinderBehavior.ts')
-rw-r--r-- | engine/structures/RefreshingCollisionFinderBehavior.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/structures/RefreshingCollisionFinderBehavior.ts b/engine/structures/RefreshingCollisionFinderBehavior.ts index 21d690d..573ddd8 100644 --- a/engine/structures/RefreshingCollisionFinderBehavior.ts +++ b/engine/structures/RefreshingCollisionFinderBehavior.ts @@ -1,4 +1,4 @@ -import type { Coord2D, Dimension2D } from "../interfaces"; +import type { Coord2D, Dimension2D } from '../interfaces'; export interface BoxedEntry { id: string; @@ -7,8 +7,8 @@ export interface BoxedEntry { } export interface RefreshingCollisionFinderBehavior { - public clear(): void; - public insert(boxedEntry: BoxedEntry): void; - public getNeighborIds(boxedEntry: BoxedEntry): Set<string>; - public setTopLeft(topLeft: Coord2d): void; + clear(): void; + insert(boxedEntry: BoxedEntry): void; + getNeighborIds(boxedEntry: BoxedEntry): Set<string>; + setTopLeft(topLeft: Coord2D): void; } |