using System; namespace BansheeEngine { /// /// Attribute that prevents a field from being visible in the inspector window in editor. Normally those fields /// are public fields of a , or a class marked with a /// attribute. /// [AttributeUsage(AttributeTargets.Field)] public sealed class HideInInspector : Attribute { } }