using System; using System.Collections.Generic; using System.Text; namespace ET { public class MonsterDeadEvent : AEvent { public override async ETTask Run(EventType.MonsterDead args) { Unit unit = args.unit; await ETTask.CompletedTask; } } }