build dev

This commit is contained in:
Olivier Gagnon
2021-09-18 04:01:07 -04:00
parent bdfa4be71f
commit e1a22016b5
14 changed files with 1124 additions and 1269 deletions
+5 -1
View File
@@ -1,5 +1,7 @@
import { Faction } from "../Faction/Faction";
import { LocationName } from "../Locations/data/LocationNames";
import { Location } from "../Locations/Location";
/**
* The full-screen page the player is currently be on.
* These pages are mutually exclusive.
@@ -31,6 +33,7 @@ export enum Page {
Tutorial,
Work,
BladeburnerCinematic,
Location,
}
/**
@@ -57,7 +60,7 @@ export interface IRouter {
toGameOptions(): void;
toGang(): void;
toHacknetNodes(): void;
toInfiltration(location: LocationName): void;
toInfiltration(location: Location): void;
toJob(): void;
toMilestones(): void;
toResleeves(): void;
@@ -69,4 +72,5 @@ export interface IRouter {
toTutorial(): void;
toWork(): void;
toBladeburnerCinematic(): void;
toLocation(location: Location): void;
}