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