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

10 lines
299 B
C#

using System;
namespace Cainos.LucidEditor
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property)]
public class FoldoutGroupAttribute : PropertyGroupAttribute
{
public FoldoutGroupAttribute(string groupName) : base(groupName) { }
}
}