You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
323 B

namespace ET
{
// 分发数值监听
public class NumericChangeEventAsyncNotifyWatcher: AEventClass<EventType.NumbericChange>
{
protected override void Run(object args)
{
EventType.NumbericChange numbericChange = args as EventType.NumbericChange;
NumericWatcherComponent.Instance.Run(numbericChange);
}
}
}