AllRoleInfoComponent.cs 265 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET;
  3. [ComponentOf()]
  4. public class AllRoleInfoComponent : Entity, IAwake, IDestroy
  5. {
  6. public static AllRoleInfoComponent Instance;
  7. public Dictionary<long, RoleInfo> AllRoleDic = new Dictionary<long, RoleInfo>();
  8. }