zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Hotfix/Logic/Model/Module/Numeric/NumericChangeEvent_NotifyWa...

13 lines
343 B
C#

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);
}
}
}