LimitComponent.cs 217 B

123456789
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class LimitComponent : Entity, IAwake, IConfigHotLoad
  5. {
  6. public Dictionary<int, LimitInfo> limitInfos = new Dictionary<int, LimitInfo>();
  7. }
  8. }