Files
beyond/Assets/ThirdParty/Invector-3rdPersonController/Basic Locomotion/Scripts/Generic/Utils/vComment.cs
2024-11-20 15:21:28 +01:00

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
}
}