| 1234567891011 |
- using System.Collections.Generic;
- namespace ET;
- [ComponentOf()]
- public class AllRoleInfoComponent : Entity, IAwake, IDestroy
- {
- public static AllRoleInfoComponent Instance;
- public Dictionary<long, RoleInfo> AllRoleDic = new Dictionary<long, RoleInfo>();
- }
|