RobotCase.cs 325 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ChildOf(typeof(RobotCaseComponent))]
  5. public class RobotCase: Entity, IAwake, IDestroy
  6. {
  7. public ETCancellationToken CancellationToken;
  8. public string CommandLine;
  9. public HashSet<long> Scenes { get; } = new HashSet<long>();
  10. }
  11. }