From e8468e71bb2d99cecec32c5cfc03566494d820b9 Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Tue, 14 Aug 2018 02:02:43 +0200 Subject: [PATCH] Update typescript definition --- distribution/openrct2.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/distribution/openrct2.d.ts b/distribution/openrct2.d.ts index 08b5a254b5..9ba8576d96 100644 --- a/distribution/openrct2.d.ts +++ b/distribution/openrct2.d.ts @@ -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 {