16 lines
312 B
C#
16 lines
312 B
C#
using UnityEngine;
|
|
|
|
namespace Invector.Utils
|
|
{
|
|
public class vComment : MonoBehaviour
|
|
{
|
|
#if UNITY_EDITOR
|
|
[SerializeField] protected string header = "COMMENT";
|
|
[Multiline]
|
|
[SerializeField] protected string comment;
|
|
|
|
[SerializeField] protected bool inEdit;
|
|
|
|
#endif
|
|
}
|
|
} |