diff --git a/distribution/openrct2.d.ts b/distribution/openrct2.d.ts index ccc7ba579c..956238c7d8 100644 --- a/distribution/openrct2.d.ts +++ b/distribution/openrct2.d.ts @@ -250,7 +250,16 @@ export interface Tile { getElement(index: number): TileElement; } +export interface RideObject { + readonly id: number; + readonly name: string; + readonly description: string; + readonly capacity: string; +} + export interface Ride { + readonly object: RideObject; + type: string; name: string; excitement: number; intensity: number;