ServerInfosComponent.cs 246 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class ServerInfosComponent : Entity, IAwake, IDestroy
  5. {
  6. public List<ServerInfo> ServerInfoList = new List<ServerInfo>();
  7. public int CurrentServerId = 1;
  8. }
  9. }