Exemple #1
0
        public void ShowNuntias(Nuntias nuntias, bool playConversationInnerSound)
        {
            string processesedText = Universal.ProcessStringToShow(nuntias.Text, this.maxCharactersPerLine);

            if (Universal.ParentForm.InvokeRequired)
            {
                Universal.ParentForm.Invoke(new Action(() =>
                {
                    ShowNuntiasTasks(nuntias, playConversationInnerSound, processesedText);
                }));
            }
            else
            {
                ShowNuntiasTasks(nuntias, playConversationInnerSound, processesedText);
            }
        }