using JetBrains.Annotations;
using PkmnLib.Static.Utils;
namespace PkmnLib.Dynamic.ScriptHandling.Registry;
[AttributeUsage(AttributeTargets.Class), MeansImplicitUse]
public class ItemScriptAttribute : Attribute
{
///
/// The name of the script.
///
public StringKey Name { get; }
///
public ItemScriptAttribute(string name)
{
Name = name;
}
}