Files
AddonLib/AddonLib/Attributes/AddonCallableAttribute.cs
Exil Productions 3e8b70f869 Add project files.
2025-09-08 22:20:20 +02:00

15 lines
301 B
C#

using System;
namespace AddonLib;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class AddonCallableAttribute : Attribute
{
public string? Name { get; }
public AddonCallableAttribute(string? name = null)
{
Name = name;
}
}