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

Move Error, Campaign and Ride Demolition windows

This commit is contained in:
Marijn van der Werf
2017-09-06 16:09:35 +02:00
parent a49a777047
commit ac910a5979
38 changed files with 188 additions and 182 deletions

View File

@@ -125,6 +125,10 @@ public:
{
case WD_BANNER:
return window_banner_open(id);
case WD_DEMOLISH_RIDE:
return window_ride_demolish_prompt_open(id);
case WD_NEW_CAMPAIGN:
return window_new_campaign_open(id);
case WD_SIGN:
return window_sign_open(id);
case WD_SIGN_SMALL:
@@ -138,6 +142,10 @@ public:
}
}
rct_window * ShowError(rct_string_id title, rct_string_id message) override
{
return window_error_open(title, message);
}
void HandleKeyboard(bool isTitle) override
{