This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/core/data/warehouse_names.hpp

30 lines
730 B
C++
Raw Normal View History

2022-12-06 16:12:02 +00:00
#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",
2022-12-06 16:12:02 +00:00
});
}