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

19 lines
374 B
C#

/*
Yarn Spinner is licensed to you under the terms found in the file LICENSE.md.
*/
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
#nullable enable
namespace Yarn.Unity.Attributes
{
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
public abstract class YarnParameterAttribute : Attribute
{
}
}