using UnityEngine;
namespace EditorAttributes
{
///
/// Attribute to hide a field when entering play mode
///
public class HideInPlayModeAttribute : PropertyAttribute
{
///
/// Attribute to hide a field when entering play mode
///
public HideInPlayModeAttribute()
#if UNITY_2023_3_OR_NEWER
: base(true)
#endif
{ }
}
}