Files
YesNt-Interpreter/YesNt.Interpreter/Attributes/StaticStatementAttribute.cs
T
Stone-Red-Code 2a7e8074ba - Add functions
- Code improvements
2021-11-19 20:49:55 +01:00

13 lines
354 B
C#

using System;
using YesNt.Interpreter.Enums;
namespace YesNt.Interpreter.Attributes
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
internal class StaticStatementAttribute : Attribute
{
public bool ExecuteInSearchLabelMode { get; set; }
public Priority Priority { get; set; } = Priority.Normal;
}
}