mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 15:17:23 +08:00

* 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>
123 lines
3.4 KiB
C++
123 lines
3.4 KiB
C++
#pragma once
|
|
|
|
namespace big
|
|
{
|
|
constexpr const static auto apartment_names = std::to_array({
|
|
"INVALID",
|
|
"Eclipse Towers, Apt 31",
|
|
"Eclipse Towers, Apt 9",
|
|
"Eclipse Towers, Apt 40",
|
|
"Eclipse Towers, Apt 5",
|
|
"3 Alta St, Apt 10",
|
|
"3 Alta St, Apt 57",
|
|
"Del Perro Heights, Apt 20",
|
|
"1162 Power St, Apt 3",
|
|
"0605 Spanish Ave, Apt 1",
|
|
"0604 Las Lagunas Blvd, Apt 4",
|
|
"0184 Milton Rd, Apt 13",
|
|
"The Royale, Apt 19",
|
|
"0504 S Mo Milton Dr",
|
|
"0115 Bay City Ave, Apt 45",
|
|
"0325 South Rockford Dr",
|
|
"Dream Tower, Apt 15",
|
|
"2143 Las Lagunas Blvd, Apt 9",
|
|
"1561 San Vitas St, Apt 2",
|
|
"0112 S Rockford Dr, Apt 13",
|
|
"2057 Vespucci Blvd, Apt 1",
|
|
"0069 Cougar Ave, Apt 19",
|
|
"1237 Prosperity St, Apt 21",
|
|
"1115 Blvd Del Perro, Apt 18",
|
|
"0120 Murrieta Heights",
|
|
"Unit 14 Popular St",
|
|
"Unit 2 Popular St",
|
|
"331 Supply St",
|
|
"Unit 1 Olympic Fwy",
|
|
"0754 Roy Lowenstein Blvd",
|
|
"12 Little Bighorn Ave",
|
|
"Unit 124 Popular St",
|
|
"0552 Roy Lowenstein Blvd",
|
|
"0432 Davis Ave",
|
|
"Del Perro Heights, Apt 7",
|
|
"Weazel Plaza, Apt 101",
|
|
"Weazel Plaza, Apt 70",
|
|
"Weazel Plaza, Apt 26",
|
|
"4 Integrity Way, Apt 30",
|
|
"4 Integrity Way, Apt 35",
|
|
"Richards Majestic, Apt 4",
|
|
"Richards Majestic, Apt 51",
|
|
"Tinsel Towers, Apt 45",
|
|
"Tinsel Towers, Apt 29",
|
|
"142 Paleto Blvd",
|
|
"1 Strawberry Ave",
|
|
"1932 Grapeseed Ave",
|
|
"1920 Senora Way",
|
|
"2000 Great Ocean Highway",
|
|
"197 Route 68",
|
|
"870 Route 68 Approach",
|
|
"1200 Route 68",
|
|
"8754 Route 68",
|
|
"1905 Davis Ave",
|
|
"1623 South Shambles St",
|
|
"4531 Dry Dock St",
|
|
"1337 Exceptionalists Way",
|
|
"Unit 76 Greenwich Parkway",
|
|
"Garage Innocence Blvd",
|
|
"634 Blvd Del Perro",
|
|
"0897 Mirror Park Blvd",
|
|
"Eclipse Towers, Apt 3",
|
|
"Del Perro Heights, Apt 4",
|
|
"Richards Majestic, Apt 2",
|
|
"Tinsel Towers, Apt 42",
|
|
"4 Integrity Way, Apt 28",
|
|
"4 Hangman Ave",
|
|
"12 Sustancia Rd",
|
|
"4584 Procopio Dr",
|
|
"4401 Procopio Dr",
|
|
"0232 Paleto Blvd",
|
|
"140 Zancudo Ave",
|
|
"1893 Grapeseed Ave",
|
|
"3655 Wild Oats Drive",
|
|
"2044 North Conker Avenue",
|
|
"2868 Hillcrest Avenue",
|
|
"2862 Hillcrest Avenue",
|
|
"3677 Whispymound Drive",
|
|
"2117 Milton Road",
|
|
"2866 Hillcrest Avenue",
|
|
"2874 Hillcrest Avenue",
|
|
"2113 Mad Wayne Thunder Drive",
|
|
"2045 North Conker Avenue",
|
|
"Eclipse Towers, Penthouse Suite 1",
|
|
"Eclipse Towers, Penthouse Suite 2",
|
|
"Eclipse Towers, Penthouse Suite 3",
|
|
"Private Yacht",
|
|
"Lombank West",
|
|
"Maze Bank West",
|
|
"Arcadius Business Center",
|
|
"Maze Bank Tower",
|
|
"Rancho Clubhouse",
|
|
"Del Perro Beach Clubhouse",
|
|
"Pillbox Hill Clubhouse",
|
|
"Great Chaparral Clubhouse",
|
|
"Paleto Bay Clubhouse",
|
|
"Sandy Shores Clubhouse",
|
|
"La Mesa Clubhouse",
|
|
"Downtown Vinewood Clubhouse",
|
|
"Hawick Clubhouse",
|
|
"Grapeseed Clubhouse",
|
|
"Paleto Bay Clubhouse",
|
|
"Vespucci Beach Clubhouse",
|
|
"Office Garage 1",
|
|
"Office Garage 2",
|
|
"Office Garage 3",
|
|
"Office Garage 1",
|
|
"Office Garage 2",
|
|
"Office Garage 3",
|
|
"Office Garage 1",
|
|
"Office Garage 2",
|
|
"Office Garage 3",
|
|
"Office Garage 1",
|
|
"Office Garage 2",
|
|
"Office Garage 3",
|
|
"Vehicle Warehouse",
|
|
});
|
|
} |