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

14 lines
304 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
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;
}
}
}