NumericWatcherAttribute.cs 286 B

123456789101112131415
  1. namespace ET
  2. {
  3. public class NumericWatcherAttribute : BaseAttribute
  4. {
  5. public SceneType SceneType { get; }
  6. public int NumericType { get; }
  7. public NumericWatcherAttribute(SceneType sceneType, int type)
  8. {
  9. this.SceneType = sceneType;
  10. this.NumericType = type;
  11. }
  12. }
  13. }