PlayerQueueComponent.cs 175 B

1234567891011
  1. namespace ET
  2. {
  3. public class PlayerQueueComponent : Entity, IAwake, IDestroy
  4. {
  5. public long UnitId;
  6. public int Index;
  7. public int Count;
  8. }
  9. }