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); } }