add variables: no. of health/mana/regen/pack/attack ups

This commit is contained in:
wcko87 2017-05-12 21:51:30 +08:00
parent 552d836623
commit e4e448f867

View File

@ -194,6 +194,37 @@ namespace rabi_splitter_WPF
tracker: () => snapshot == null ? 0 : snapshot.stamina tracker: () => snapshot == null ? 0 : snapshot.stamina
), ),
ExportVariable<int> (
handle: "healthups",
displayName: "No. of Health Ups",
tracker: () => snapshot == null ? 0 : snapshot.nHpUps
),
ExportVariable<int> (
handle: "manaups",
displayName: "No. of Mana Ups",
tracker: () => snapshot == null ? 0 : snapshot.nManaUps
),
ExportVariable<int> (
handle: "regenups",
displayName: "No. of Regen Ups",
tracker: () => snapshot == null ? 0 : snapshot.nRegenUps
),
ExportVariable<int> (
handle: "packups",
displayName: "No. of Pack Ups",
tracker: () => snapshot == null ? 0 : snapshot.nPackUps
),
ExportVariable<int> (
handle: "attackups",
displayName: "No. of Attack Ups",
tracker: () => snapshot == null ? 0 : snapshot.nAttackUps
),
ExportVariable<float> ( ExportVariable<float> (
handle: "x", handle: "x",
displayName: "x", displayName: "x",