Files
ichni_Official/Packages/dev.yarnspinner.unity/Runtime/Commands/YarnEnumParameterAttribute.cs
SoulliesOfficial 021e76efe7 同步
2026-06-09 11:21:59 -04:00

16 lines
332 B
C#

/*
Yarn Spinner is licensed to you under the terms found in the file LICENSE.md.
*/
#nullable enable
namespace Yarn.Unity.Attributes
{
public class YarnEnumParameterAttribute: YarnParameterAttribute
{
public string Name { get; set; }
public YarnEnumParameterAttribute(string name) => Name = name;
}
}