CODEBASE: Refactor Stanek's Gift UI code and change internal FragmentType enum (#2346)

This commit is contained in:
catloversg
2025-10-13 03:23:45 +07:00
committed by GitHub
parent 950c21d734
commit 030be41df9
13 changed files with 253 additions and 160 deletions

View File

@@ -5771,6 +5771,29 @@ export interface Formulas {
bladeburner: BladeburnerFormulas;
}
/** @public */
type FragmentEnumType = {
HackingSpeed: 3;
HackingMoney: 4;
HackingGrow: 5;
Hacking: 6;
Strength: 7;
Defense: 8;
Dexterity: 9;
Agility: 10;
Charisma: 11;
HacknetMoney: 12;
HacknetCost: 13;
Rep: 14;
WorkMoney: 15;
Crime: 16;
Bladeburner: 17;
Booster: 18;
};
/** @public */
type FragmentType = _ValueOf<FragmentEnumType>;
/** @public */
interface Fragment {
id: number;