using System.Collections.Generic; namespace ET { [ComponentOf(typeof(Scene))] [ChildType(typeof(ServerInfo))] public class ServerInfoManagerComponent : Entity, IAwake, IDestroy, ILoad { public List ServerInfos = new List(); } }