mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-04 20:37:36 +01:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
import { IMap } from "../types";
|
|
|
|
/**
|
|
* Display Location Content when visiting somewhere in the World
|
|
*/
|
|
// tslint:disable-next-line:variable-name
|
|
export const Cities: IMap<string> = {
|
|
Aevum: "Aevum",
|
|
Chongqing: "Chongqing",
|
|
Ishima: "Ishima",
|
|
NewTokyo: "New Tokyo",
|
|
Sector12: "Sector-12",
|
|
Volhaven: "Volhaven",
|
|
};
|