Began creating 'parent' components for the City and Location-specific parts of the UI

This commit is contained in:
danielyxie
2019-03-29 00:12:41 -07:00
parent 75bc34208c
commit 7172f4e527
16 changed files with 551 additions and 344 deletions
+4 -3
View File
@@ -2,6 +2,7 @@
* Map of all Cities in the game
* Key = City Name, Value = City object
*/
export interface IMetadata = {
name: string;
}
import { City } from "./City";
import { IMap } from "../types";
export const Cities: IMap<City> = {};