TrainResultEventData.cs 299 B

1234567891011121314
  1. using ProjectBase.Event;
  2. using ShotSimulator.Train.Info;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. namespace ShotSimulator.Event
  7. {
  8. public class TrainResultEventData : BaseEventData
  9. {
  10. public MetricsType type;
  11. public double value;
  12. }
  13. }