mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-02 13:57:05 +02:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
/**
|
|
* All possible Cities in the game. Names only, not actual "City" object
|
|
* Implemented as an enum for typing purposes
|
|
*/
|
|
export enum CityName {
|
|
Aevum = "Aevum",
|
|
Chongqing = "Chongqing",
|
|
Ishima = "Ishima",
|
|
NewTokyo = "New Tokyo",
|
|
Sector12 = "Sector-12",
|
|
Volhaven = "Volhaven",
|
|
}
|