11 lines
276 B
C#
11 lines
276 B
C#
using UnityEngine;
|
|
using System;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
|
|
public class GroupAttribute : PropertyGroupAttribute
|
|
{
|
|
public GroupAttribute(string groupName) : base(groupName) { }
|
|
}
|
|
} |