Files
Two-World/Assets/Cainos/Third Party/Lucid Editor/Runtime/Attributes/TabGroupAttribute.cs
2025-05-08 16:03:30 +09:00

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;
}
}
}