Example #1
0
        public void Text(Player player)
        {
            int questionIndex = 0;

            do
            {
                for (int i = 0; i < indexAnswerEvent.Length; i++)
                {
                    if (indexAnswerEvent[i] == questionIndex)
                    {
                        if (i == 0)
                        {
                            Action1(player);
                        }
                        else if (i == 1)
                        {
                            Action2(player);
                        }
                    }
                }


                questionIndex = player.Discussion(name, text[questionIndex, 0], text[questionIndex, 1], text[questionIndex, 2], int.Parse(text[questionIndex, 3]), int.Parse(text[questionIndex, 4]));
            } while (questionIndex != 7);
        }