NumericWatcherAttribute.cs 331 B

123456789101112131415161718
  1. using System;
  2. namespace ET
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public class NumericWatcherAttribute : BaseAttribute
  6. {
  7. public int SceneType { get; }
  8. public int NumericType { get; }
  9. public NumericWatcherAttribute(int sceneType, int type)
  10. {
  11. this.SceneType = sceneType;
  12. this.NumericType = type;
  13. }
  14. }
  15. }