public void DisplayNextSentence() { if (sentences.Count == 0) { EndDialogue(); src.DialogueEnded(); return; } string sentence = sentences.Dequeue(); StopAllCoroutines(); StartCoroutine(TypeSentence(sentence)); }