mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-13 11:13:50 +01:00
20 lines
383 B
TypeScript
20 lines
383 B
TypeScript
// Enums that defined allowed values for setting configuration
|
|
|
|
/**
|
|
* Allowed values for the 'OwnedAugmentationsOrder' setting
|
|
*/
|
|
export enum PurchaseAugmentationsOrderSetting {
|
|
Cost,
|
|
Default,
|
|
Reputation,
|
|
Purchasable,
|
|
}
|
|
|
|
/**
|
|
* Allowed values for the 'OwnedAugmentationsOrder' setting
|
|
*/
|
|
export enum OwnedAugmentationsOrderSetting {
|
|
Alphabetically,
|
|
AcquirementTime,
|
|
}
|