diff options
Diffstat (limited to 'Assets/Scripts/Dialogue/DialogueManager.cs')
| -rw-r--r-- | Assets/Scripts/Dialogue/DialogueManager.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Assets/Scripts/Dialogue/DialogueManager.cs b/Assets/Scripts/Dialogue/DialogueManager.cs new file mode 100644 index 0000000..056e7d9 --- /dev/null +++ b/Assets/Scripts/Dialogue/DialogueManager.cs @@ -0,0 +1,21 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class DialogueManager : MonoBehaviour
+{
+
+ private Queue<string> sentences;
+
+ // Start is called before the first frame update
+ void Start()
+ {
+ sentences = new Queue<string>();
+ }
+
+ public void StartDialogue(Dialogue dialogue)
+ {
+ Debug.Log("Starting conversation with " + dialogue.name);
+ }
+
+}
|
