1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-07 07:04:36 +01:00

Implement group boxes

This commit is contained in:
Ted John
2020-02-15 14:19:11 +00:00
parent b1cf6fcf63
commit a9a67a7a7e
3 changed files with 26 additions and 4 deletions

View File

@@ -326,7 +326,7 @@ export interface Park {
* Represents the type of a widget, e.g. button or label.
*/
export type WidgetType =
"button" | "dropdown" | "label" | "tabview" | "viewport";
"button" | "dropdown" | "groupbox" | "label" | "tabview" | "viewport";
export interface Widget {
type: WidgetType;