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.
16 lines
367 B
16 lines
367 B
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 监视数值变化组件,分发监听
|
||
|
/// </summary>
|
||
|
[ComponentOf(typeof(Scene))]
|
||
|
public class NumericWatcherComponent : Entity, IAwake, ILoad
|
||
|
{
|
||
|
public static NumericWatcherComponent Instance { get; set; }
|
||
|
|
||
|
public Dictionary<int, List<INumericWatcher>> allWatchers;
|
||
|
}
|
||
|
}
|