summaryrefslogtreecommitdiff
path: root/Assets/Plugins/AdvancedInspector/Attributes/DisplayAsParent.cs
blob: acec32e9bcdce9ba4489cb4e4386da5ca89d6813 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace AdvancedInspector
{
    /// <summary>
    /// Prevent a nested object from having to be unfolded.
    /// </summary>
    [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
    public class DisplayAsParentAttribute : Attribute { }
}