30 lines
660 B
C++
30 lines
660 B
C++
![]() |
#pragma once
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
constexpr const static auto warehouse_names = std::to_array({
|
||
|
"INVALID",
|
||
|
"Pacific Bait Storage",
|
||
|
"White Widow Garage",
|
||
|
"Celltowa Unit",
|
||
|
"Convenience Store Lockup",
|
||
|
"Foreclosed Garage",
|
||
|
"Xero Gas Factory",
|
||
|
"Derriere Lingerie Backlot",
|
||
|
"Bilgeco Warehouse",
|
||
|
"Pier 400 Utility Building",
|
||
|
"GEE Warehouse",
|
||
|
"LS Marine Building 3",
|
||
|
"Railyard Warehouse",
|
||
|
"Fridgit Annexe",
|
||
|
"Disused Factory Outlet",
|
||
|
"Discount Retail Unit",
|
||
|
"Logistics Depot",
|
||
|
"Darnell Bros Warehouse",
|
||
|
"Wholesale Furniture",
|
||
|
"Cypress Warehouses",
|
||
|
"West Vinewood Backlot",
|
||
|
"Old Power Station",
|
||
|
"Walker & Sons Warehouse"
|
||
|
});
|
||
|
}
|