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