13 lines
341 B
C#
Executable File
13 lines
341 B
C#
Executable File
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);
|
|
}
|
|
}
|
|
}
|