1234567891011121314 |
- using System.Collections.Generic;
- namespace ET
- {
- public class ServerInfosComponent : Entity, IAwake, IDestroy
- {
- // public List<ServerInfo> ServerInfoList = new List<ServerInfo>();
- public Dictionary<long, ServerInfo> ServerInfoList = new Dictionary<long, ServerInfo>();
- public int CurrentServerId = 0;
- public ServerInfo recentlyServerInfo;
- }
- }
|