mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 00:34:46 +01:00
52 lines
2.2 KiB
C++
52 lines
2.2 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2020 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 "DefaultObjects.h"
|
|
|
|
#include "Object.h"
|
|
|
|
const std::string_view DefaultSelectedObjects[] = {
|
|
// An initial default selection
|
|
"rct2.scgtrees", // Scenery: Trees
|
|
"rct2.scgshrub", // Scenery: Shrubs and Ornaments
|
|
"rct2.scggardn", // Scenery: Gardens
|
|
"rct2.scgfence", // Scenery: Fences and Walls
|
|
"rct2.scgwalls", // Scenery: Walls and Roofs
|
|
"rct2.scgpathx", // Scenery: Signs and Items for Footpaths
|
|
"rct2.tarmac", // Footpath: Tarmac
|
|
"rct2.twist1", // Ride: Twist
|
|
"rct2.ptct1", // Ride: Wooden Roller Coaster (Wooden Roller Coaster Trains)
|
|
"rct2.zldb", // Ride: Junior Roller Coaster (Ladybird Trains)
|
|
"rct2.lfb1", // Ride: Log Flume
|
|
"rct2.vcr", // Ride: Vintage Cars
|
|
"rct2.mgr1", // Ride: Merry-Go-Round
|
|
"rct2.tlt1", // Ride: Restroom
|
|
"rct2.atm1", // Ride: Cash Machine
|
|
"rct2.faid1", // Ride: First Aid Room
|
|
"rct2.infok", // Ride: Information Kiosk
|
|
"rct2.drnks", // Ride: Drinks Stall
|
|
"rct2.cndyf", // Ride: Candyfloss Stall
|
|
"rct2.burgb", // Ride: Burger Bar
|
|
"rct2.balln", // Ride: Balloon Stall
|
|
"rct2.arrt1", // Ride: Corkscrew Roller Coaster
|
|
"rct2.rboat", // Ride: Rowing Boats
|
|
"rct2.pkent1", // Park Entrance: Traditional Park Entrance
|
|
"rct2.wtrcyan", // Water: Natural Water
|
|
"rct2.tarmacb", // Footpath: Brown Tarmac Footpath
|
|
"rct2.pathspce", // Footpath: Space Style Footpath
|
|
"rct2.pathdirt", // Footpath: Dirt Footpath
|
|
"rct2.pathcrzy", // Footpath: Crazy Paving Footpath
|
|
"rct2.pathash", // Footpath: Ash Footpath
|
|
|
|
// The following are for all random map generation features to work out the box
|
|
"rct2.scgjungl", // Jungle Theming
|
|
"rct2.scgsnow", // Snow and Ice Theming
|
|
"rct2.scgwater", // Water Feature Theming
|
|
};
|