12 lines
316 B
C#
12 lines
316 B
C#
using System;
|
|
using UnityEngine;
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public class ScriptDescriptionAttribute : PropertyAttribute
|
|
{
|
|
public string Description;
|
|
|
|
public ScriptDescriptionAttribute(string description)
|
|
{
|
|
Description = description;
|
|
}
|
|
} |