bard-legends-framework 1.11.2 → 1.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -7
- package/dist/index.mjs +7 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -962,7 +962,7 @@ declare class PathFinder {
|
|
|
962
962
|
}
|
|
963
963
|
|
|
964
964
|
declare class VectorFieldPathFinder {
|
|
965
|
-
constructor(_targetArea: Rectangle,
|
|
965
|
+
constructor(_targetArea: Rectangle, availabilityGrid: Grid<boolean>);
|
|
966
966
|
getDirectionToTarget(startingPosition: Vector): Radian | undefined;
|
|
967
967
|
}
|
|
968
968
|
|
package/dist/index.d.ts
CHANGED
|
@@ -962,7 +962,7 @@ declare class PathFinder {
|
|
|
962
962
|
}
|
|
963
963
|
|
|
964
964
|
declare class VectorFieldPathFinder {
|
|
965
|
-
constructor(_targetArea: Rectangle,
|
|
965
|
+
constructor(_targetArea: Rectangle, availabilityGrid: Grid<boolean>);
|
|
966
966
|
getDirectionToTarget(startingPosition: Vector): Radian | undefined;
|
|
967
967
|
}
|
|
968
968
|
|