add basic dialogue system and interactable interface
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using UnityEngine;
|
||||
|
||||
[System.Serializable]
|
||||
public class Dialogue
|
||||
{
|
||||
public string charName;
|
||||
public bool isActive = false;
|
||||
|
||||
[TextArea(3,10)]
|
||||
public string[] sentences;
|
||||
}
|
||||
Reference in New Issue
Block a user