mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-03 03:47:35 +01:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
/**
|
|
* Map of all Cities in the game
|
|
* Key = City Name, Value = City object
|
|
*/
|
|
import { City } from "./City";
|
|
import { IMap } from "../types";
|
|
|
|
export const Cities: IMap<City> = {};
|