CTT/Server/Hotfix/Module/Numeric/NumericChangeEvent_NotifyWa...

13 lines
341 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
namespace ET
{
// 分发数值监听
public class NumericChangeEvent_NotifyWatcher : AEvent<EventType.NumbericChange>
{
public override async ETTask Run(EventType.NumbericChange args)
{
await NumericWatcherComponent.Instance.Run(args.NumericType, args.Parent,args.Old, args.New);
}
}
}