using UnityEngine;
namespace EditorAttributes
{
///
/// Attribute to display specified fields in a tabbed group
///
public class TabGroupAttribute : PropertyAttribute
{
public string[] FieldsToGroup { get; private set; }
///
/// Attribute to display specified fields in a tabbed group
///
/// The name of the fields to group
public TabGroupAttribute(params string[] fieldsToGroup) => FieldsToGroup = fieldsToGroup;
}
}