15 lines
357 B
C#
15 lines
357 B
C#
using Golems.Attributes;
|
|
|
|
namespace Golems
|
|
{
|
|
public partial class AttributesEditor
|
|
{
|
|
/// <summary>
|
|
/// Show the ShowLevelAttributes
|
|
/// </summary>
|
|
private void OnInspectorGUIShowLevelAttribute()
|
|
{
|
|
ShowLevelAttribute.EditorShowLevelInfo(target, "<color=green>Level info</color>");
|
|
}
|
|
}
|
|
} |