11 lines
208 B
C#
11 lines
208 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public abstract class PropertyGrouper
|
|
{
|
|
public abstract void BeginGroup(string label);
|
|
|
|
public abstract void EndGroup();
|
|
}
|
|
}
|