MetricsInfo.cs 266 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using System;
  5. namespace ShotSimulator.Train.Info
  6. {
  7. [Serializable]
  8. public class MetricsInfo
  9. {
  10. public MetricsType Type;
  11. public List<float> StageValues;
  12. }
  13. }