TH1/Unity/Assets/Scripts/Model/Share/Module/Numeric/NumericWatcherAttribute.cs
2025-07-17 18:26:28 +08:00

18 lines
343 B
C#

using System;
namespace ET
{
[AttributeUsage(AttributeTargets.Class)]
public class NumericWatcherAttribute : BaseAttribute
{
public SceneType SceneType { get; }
public int NumericType { get; }
public NumericWatcherAttribute(SceneType sceneType, int type)
{
this.SceneType = sceneType;
this.NumericType = type;
}
}
}