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