Files
BABA_YAGA/Assets/Scripts/Player/Generic/Utils/vComment.cs

16 lines
312 B
C#
Raw Normal View History

2026-05-30 09:16:35 +07:00
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
}
}