MapEventComponent.cs 285 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof (Map))]
  5. public class MapEventComponent: Entity, IAwake, IDestroy
  6. {
  7. /** 已杀的boss列表 **/
  8. [StaticField]
  9. public List<int> MonsterDeadList = new List<int>();
  10. }
  11. }