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