using ET.EventType; using ET; using System; using System.Collections.Generic; namespace ET { public class SetHudCharacterEvent : AEvent_Sync { public override void Run(SetHudCharacter args) { Unit unit = args.unit; HudCharacter hud = unit.GetComponent(); hud.Init(args, args.progressTitleType); } } }