server-master/srcs/WingsAPI.Scripting/Attribute/ScriptEventAttribute.cs
2026-02-10 18:21:30 +01:00

18 lines
No EOL
432 B
C#

using System;
namespace WingsAPI.Scripting.Attribute
{
[AttributeUsage(AttributeTargets.Class)]
public class ScriptEventAttribute : System.Attribute
{
public ScriptEventAttribute(string name, bool isRemovedOnTrigger)
{
IsRemovedOnTrigger = isRemovedOnTrigger;
Name = name;
}
public string Name { get; }
public bool IsRemovedOnTrigger { get; }
}
}