1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 23:33:04 +01:00

Fix nullability of TileSelection.range (#15992)

This commit is contained in:
Basssiiie
2021-11-25 00:00:32 +01:00
committed by GitHub
parent c2d892bdce
commit b44b5eca0c

View File

@@ -2117,7 +2117,7 @@ declare global {
}
interface TileSelection {
range: MapRange;
range: MapRange | null;
tiles: CoordsXY[];
}