mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-20 13:33:02 +01:00
128 lines
4.7 KiB
C++
128 lines
4.7 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2019 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#include "BannerSetNameAction.hpp"
|
|
#include "ClearAction.hpp"
|
|
#include "ClimateSetAction.hpp"
|
|
#include "FootpathPlaceAction.hpp"
|
|
#include "FootpathPlaceFromTrackAction.hpp"
|
|
#include "FootpathRemoveAction.hpp"
|
|
#include "FootpathSceneryPlaceAction.hpp"
|
|
#include "FootpathSceneryRemoveAction.hpp"
|
|
#include "GameAction.h"
|
|
#include "GuestSetFlagsAction.hpp"
|
|
#include "GuestSetNameAction.hpp"
|
|
#include "LandLowerAction.hpp"
|
|
#include "LandRaiseAction.hpp"
|
|
#include "LandSetHeightAction.hpp"
|
|
#include "LargeSceneryRemoveAction.hpp"
|
|
#include "LoadOrQuitAction.hpp"
|
|
#include "MazeSetTrackAction.hpp"
|
|
#include "ParkMarketingAction.hpp"
|
|
#include "ParkSetLoanAction.hpp"
|
|
#include "ParkSetNameAction.hpp"
|
|
#include "ParkSetParameterAction.hpp"
|
|
#include "ParkSetResearchFundingAction.hpp"
|
|
#include "PauseToggleAction.hpp"
|
|
#include "PlaceParkEntranceAction.hpp"
|
|
#include "PlacePeepSpawnAction.hpp"
|
|
#include "RideCreateAction.hpp"
|
|
#include "RideDemolishAction.hpp"
|
|
#include "RideEntranceExitPlaceAction.hpp"
|
|
#include "RideEntranceExitRemoveAction.hpp"
|
|
#include "RideSetAppearanceAction.hpp"
|
|
#include "RideSetColourScheme.hpp"
|
|
#include "RideSetName.hpp"
|
|
#include "RideSetPriceAction.hpp"
|
|
#include "RideSetSetting.hpp"
|
|
#include "RideSetStatus.hpp"
|
|
#include "RideSetVehiclesAction.hpp"
|
|
#include "SetParkEntranceFeeAction.hpp"
|
|
#include "SignSetNameAction.hpp"
|
|
#include "SignSetStyleAction.hpp"
|
|
#include "SmallSceneryPlaceAction.hpp"
|
|
#include "SmallSceneryRemoveAction.hpp"
|
|
#include "StaffFireAction.hpp"
|
|
#include "StaffHireNewAction.hpp"
|
|
#include "StaffSetColourAction.hpp"
|
|
#include "StaffSetCostumeAction.hpp"
|
|
#include "StaffSetNameAction.hpp"
|
|
#include "StaffSetOrdersAction.hpp"
|
|
#include "StaffSetPatrolAreaAction.hpp"
|
|
#include "SurfaceSetStyleAction.hpp"
|
|
#include "TrackPlaceAction.hpp"
|
|
#include "TrackRemoveAction.hpp"
|
|
#include "TrackSetBrakeSpeedAction.hpp"
|
|
#include "WallRemoveAction.hpp"
|
|
#include "WaterLowerAction.hpp"
|
|
#include "WaterRaiseAction.hpp"
|
|
#include "WaterSetHeightAction.hpp"
|
|
|
|
namespace GameActions
|
|
{
|
|
void Register()
|
|
{
|
|
Register<BannerSetNameAction>();
|
|
Register<ClimateSetAction>();
|
|
Register<FootpathPlaceAction>();
|
|
Register<FootpathPlaceFromTrackAction>();
|
|
Register<FootpathRemoveAction>();
|
|
Register<FootpathSceneryPlaceAction>();
|
|
Register<FootpathSceneryRemoveAction>();
|
|
Register<GuestSetNameAction>();
|
|
Register<MazeSetTrackAction>();
|
|
Register<ParkMarketingAction>();
|
|
Register<ParkSetLoanAction>();
|
|
Register<ParkSetNameAction>();
|
|
Register<ParkSetParameterAction>();
|
|
Register<ParkSetResearchFundingAction>();
|
|
Register<PlaceParkEntranceAction>();
|
|
Register<PlacePeepSpawnAction>();
|
|
Register<RideCreateAction>();
|
|
Register<RideDemolishAction>();
|
|
Register<RideEntranceExitPlaceAction>();
|
|
Register<RideEntranceExitRemoveAction>();
|
|
Register<RideSetColourSchemeAction>();
|
|
Register<RideSetNameAction>();
|
|
Register<RideSetPriceAction>();
|
|
Register<RideSetStatusAction>();
|
|
Register<RideSetAppearanceAction>();
|
|
Register<RideSetVehicleAction>();
|
|
Register<RideSetSettingAction>();
|
|
Register<SetParkEntranceFeeAction>();
|
|
Register<SignSetNameAction>();
|
|
Register<SignSetStyleAction>();
|
|
Register<StaffFireAction>();
|
|
Register<StaffHireNewAction>();
|
|
Register<StaffSetColourAction>();
|
|
Register<StaffSetNameAction>();
|
|
Register<StaffSetOrdersAction>();
|
|
Register<StaffSetCostumeAction>();
|
|
Register<StaffSetPatrolAreaAction>();
|
|
Register<SurfaceSetStyleAction>();
|
|
Register<WallRemoveAction>();
|
|
Register<SmallSceneryPlaceAction>();
|
|
Register<SmallSceneryRemoveAction>();
|
|
Register<LargeSceneryRemoveAction>();
|
|
Register<LandLowerAction>();
|
|
Register<LandRaiseAction>();
|
|
Register<LandSetHeightAction>();
|
|
Register<TrackPlaceAction>();
|
|
Register<TrackRemoveAction>();
|
|
Register<TrackSetBrakeSpeedAction>();
|
|
Register<ClearAction>();
|
|
Register<PauseToggleAction>();
|
|
Register<LoadOrQuitAction>();
|
|
Register<WaterSetHeightAction>();
|
|
Register<WaterLowerAction>();
|
|
Register<WaterRaiseAction>();
|
|
Register<GuestSetFlagsAction>();
|
|
}
|
|
} // namespace GameActions
|