RobotManagerComponent.cs 212 B

12345678910
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof(Scene))]
  5. public class RobotManagerComponent: Entity, IAwake, IDestroy
  6. {
  7. public HashSet<int> robots = new();
  8. }
  9. }