Files
aibis-dream/Assets/VolFx/Tools/Runtime/SoCollection/Attributes/SocIgnoreAttribute.cs
T
2025-01-18 11:38:58 +08:00

11 lines
260 B
C#

using System;
using UnityEngine;
// VolFx © NullTale - https://x.com/NullTale
namespace VolFx.Tools
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class SocIgnoreAttribute : PropertyAttribute
{
}
}