using System.Collections.Generic; namespace ET.Server { [ComponentOf(typeof (Map))] public class MapEventComponent: Entity, IAwake, IDestroy { /** 已杀的boss列表 **/ [StaticField] public List<int> MonsterDeadList = new List<int>(); } }