mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
18 lines
343 B
C#
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;
|
|
}
|
|
}
|
|
} |