Began implementing Sleeve UI page

This commit is contained in:
danielyxie
2019-01-10 00:20:04 -08:00
parent 7d51182c60
commit d9b865ef17
9 changed files with 227 additions and 24 deletions
+6 -8
View File
@@ -51,14 +51,6 @@ export interface ICrime {
kills: number;
}
// Interface for Faction object
// Used because at the time of implementation, the Faction object has not been
// converted to TypeScript
export interface IFaction {
name: string;
playerReputation: number;
}
// Interface that defines a generic object used to track experience/money
// earnings for tasks
export interface ITaskTracker {
@@ -129,6 +121,12 @@ export abstract class Person {
work_money_mult: number;
/**
* Augmentations
*/
this.augmentations = [];
this.queuedAugmentations = [];
/**
* City that the person is in
*/