11 lines
203 B
C#
11 lines
203 B
C#
using UnityEngine;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
/// <summary>
|
|
/// Base class for all drawer attributes
|
|
/// </summary>
|
|
public class DrawerAttribute : PropertyAttribute, INaughtyAttribute
|
|
{
|
|
}
|
|
}
|