TmpMenu/src/core/data/warehouse_names.hpp
maybegreat48 97a8c5d60b Add more spoofing options and added clang-format (#1020)
* feat(Spoofing): add spoofing
* feat(Spoofing): prepare code for player attach
* remove(PlayerAttach): isn't going to work due to netsync architecture
* fix(GUI): fix scaling
* feat(Project): add clang-format file
* feat(Classes): update classes
* fix(BlackHole): remove unnecessary cleanup
* fix(Formatting): fix formatting for initializer lists
* feat(clang-format): Set tab width and 1 space before comment

Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
2023-03-01 21:27:15 +00:00

30 lines
730 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",
});
}