/// <summary> /// Draws the boss and town fire scenes. /// </summary> void DrawTownAndFireScenes() { Console.Clear(); Town.LineDropIt = true; Town.ShouldDraw = true; Town.DrawMe(); Boss.DrawMe(); var Text = new List <string>(); Text.Add("Oh look a random town\n" + "I'm a evil monster. \n" + "What should I do?!"); Text.Add("I should probably\n" + "destroy it. \n"); BossTextBox.AddBossListOfText(Text, true); Town.TownFire(randomNumber.Next(4, 9)); Console.Clear(); Player.DrawMe(); PlayerTextBox.name = Player.Name; Text = new List <string>(); Text.Add("Sephiroth!? Did \n" + "Sephiroth do this \n" + "to you?! Sephiroth.."); Text.Add("SOLDIER, Mako \n" + "Reactors Shin -Ra.. \n" + "I hate them all!"); Text.Add("Oh wait. Wrong\n" + "game! I must defeat \n" + "the evil boss!"); PlayerTextBox.AddPlayerListOfText(Text, true); }