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