UnitComponent.cs 190 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class UnitComponent: Entity
  5. {
  6. public Dictionary<long, Unit> idUnits = new Dictionary<long, Unit>();
  7. public long MyId;
  8. }
  9. }