15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
|
|
public class TabGroupAttribute : PropertyGroupAttribute
|
|
{
|
|
public readonly string tabName;
|
|
|
|
public TabGroupAttribute(string groupName, string tabName) : base(groupName)
|
|
{
|
|
this.tabName = tabName;
|
|
}
|
|
}
|
|
} |