Files
2026-04-25 23:37:10 +02:00

11 lines
247 B
C#

using System;
using UnityEngine;
namespace RPGCoreCommon.Helpers.PropertyAttributeDrawers
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class LayerMaskAttribute : PropertyAttribute
{
}
}