ReportFightValueData.cs 225 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace Core.BattleReport
  3. {
  4. public class ReportFightValueData<T>
  5. {
  6. public string name;
  7. public T value;
  8. public T maxValue;
  9. public int bl = 1;
  10. }
  11. }