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