1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Update typescript definition

This commit is contained in:
Hielke Morsink
2018-08-14 02:02:43 +02:00
committed by Ted John
parent d7123834df
commit e8468e71bb

View File

@@ -108,7 +108,6 @@ export interface FootpathAddition {
allowedOnSlope: boolean;
isQueueScreen: boolean;
status: FootpathAdditionStatus;
rideIndex: number;
/**
* Remove the path addition
@@ -119,7 +118,11 @@ export interface FootpathAddition {
export interface FootpathElement extends TileElement {
footpathType: number;
isSloped: boolean;
isQueue: boolean;
addition: FootpathAddition;
edges: number;
corners: number;
rideIndex: number;
}
export interface TrackElement extends TileElement {