Files
BABA_YAGA/Assets/Scripts/Player/Generic/Utils/vComment.cs
2026-06-04 10:42:23 +07: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
}
}