Augmentation Order (for both purchasing & viewing owned) is now saved as a persistent setting

This commit is contained in:
danielyxie
2018-10-26 11:42:23 -05:00
parent 5ad4dabe6c
commit f30602ce5d
5 changed files with 59 additions and 17 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* Enum Of allowed values for the 'OwnedAugmentationsOrder' setting
*/
export enum OwnedAugmentationsOrderSetting {
Alphabetically,
AcquirementTime,
}
/**
* Enum Of allowed values for the 'OwnedAugmentationsOrder' setting
*/
export enum PurchaseAugmentationsOrderSetting {
Cost,
Default,
Reputation,
}