Files
2026-03-03 05:27:03 +05:00

16 lines
407 B
C#

using System;
using UnityEngine;
namespace ThunderWire.Attributes
{
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
public class RequireInterfaceAttribute : PropertyAttribute
{
public Type InterfaceType;
public RequireInterfaceAttribute(Type interfaceType)
{
InterfaceType = interfaceType;
}
}
}