Beispiel #1
0
 public float this[TemporalStatType statType] => _first[statType] + _second[statType];
 public float this[TemporalStatType statType] => Mathf.Max(_inner[statType], _minimum);
 public float this[TemporalStatType statType] => _counters[statType.ToString()].Amount + CurrentStats[statType];
 private BattleCounter Counter(TemporalStatType statType) => _counters[statType.ToString()];
Beispiel #5
0
 public StatusIconDefinition this[TemporalStatType stat] => Icons[stat.ToString()];
Beispiel #6
0
 public BattleCounter(TemporalStatType type, float initialAmount, Func <float> getCurrentMaxAmount)
     : this(type.ToString(), initialAmount, getCurrentMaxAmount)
 {
 }
Beispiel #7
0
 public float this[TemporalStatType temporalStatType] => _counters[temporalStatType.ToString()].Amount;