From 581eb102d540bc495ec62dae25fcea0d676d1a59 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 24 Aug 2020 00:14:06 -0400 Subject: Dialogue; Unlock cursor --- Assets/Scripts/Dialogue/DialogueManager.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Assets/Scripts/Dialogue/DialogueManager.cs (limited to 'Assets/Scripts/Dialogue/DialogueManager.cs') 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 sentences; + + // Start is called before the first frame update + void Start() + { + sentences = new Queue(); + } + + public void StartDialogue(Dialogue dialogue) + { + Debug.Log("Starting conversation with " + dialogue.name); + } + +} -- cgit v1.2.3