ReportFightValueData.cs 198 B

1234567891011
  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. }
  10. }