Initial commit for Location Code refactor

This commit is contained in:
danielyxie
2019-03-27 01:31:47 -07:00
parent b4057fcb26
commit 75bc34208c
13 changed files with 541 additions and 117 deletions
+12
View File
@@ -0,0 +1,12 @@
/**
* 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",
};