floatFromBuff method

double floatFromBuff(
  1. String key,
  2. IBuffInfo buff
)

Implementation

double floatFromBuff(String key, IBuffInfo buff) {
  buff.key = key;
  double target = buff.value as double;
  return target;
}