12 lines
204 B
C#
12 lines
204 B
C#
using UnityEngine;
|
|
|
|
public class InspectorCommentAttribute : PropertyAttribute
|
|
{
|
|
public readonly string message;
|
|
|
|
public InspectorCommentAttribute(string message = "")
|
|
{
|
|
this.message = message;
|
|
}
|
|
}
|