summaryrefslogtreecommitdiff
path: root/Other/NavMeshTest/Assets/Scripts/Comment.cs
blob: edcd2ab81ec9e714ba4c77bad8cf1572e70b1b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Comment : MonoBehaviour
{
	[TextArea(5, 10)]
	public string comment;


}