CTT/Unity/Assets/HotfixView/Event/UI/UpdateCommonCharacterUIEven...

14 lines
304 B
C#

using ET;
using ET.EventType;
namespace ET
{
public class UpdateCommonCharacterUIEvent : AEvent<UpdateCommonCharacterUI>
{
public override async ETTask Run(UpdateCommonCharacterUI args)
{
long Id = args.Id;
await ETTask.CompletedTask;
}
}
}