slight organization

This commit is contained in:
2025-06-20 22:58:44 -05:00
parent 08dcb7c019
commit a322862a68
20 changed files with 16 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using UnityEngine;
[System.Serializable]
public class Dialogue
{
public string charName;
public bool isActive = false;
[TextArea(3,10)]
public string[] sentences;
}