10 lines
299 B
C#
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) { }
|
|
}
|
|
} |