SquareDash/Assets/Plugins/FMOD/src/EventRefAttribute.cs
2023-12-29 02:26:42 +01:00

12 lines
224 B
C#

using System;
using UnityEngine;
namespace FMODUnity
{
[Obsolete("Use the EventReference struct instead")]
public class EventRefAttribute : PropertyAttribute
{
public string MigrateTo = null;
}
}