UnitSystem.cs 198 B

12345678910
  1. namespace ET
  2. {
  3. public class UnitSystem: AwakeSystem<Unit, int>
  4. {
  5. public override void Awake(Unit self, int configId)
  6. {
  7. self.ConfigId = configId;
  8. }
  9. }
  10. }