using System; namespace Balloons_Pops_Game_Variant_Four { public class GameMessages { public static string startNewGame = "Welcome to “Balloons Pops” game. Please try to pop the balloons." + " Use 'top' to view the top scoreboard, 'restart' to start a new game" + " and 'exit' to quit the game."; public static string enterRowAndColumn = "Enter a row and column: "; public static string invalidMoveOrCommand = "Invalid move or command!"; public static string emptyScoreboard = "The scoreboard is empty"; public static string illegalMove = "Illegal move: cannot pop missing ballon!"; public static string congratulationsMessage = "Congratulations! You popped all baloons in {0} moves."; public static string enterNameForTopScoreboard = "Please enter your name for the top scoreboard: "; public static string scoreboardMessage = "Scoreboard:"; public static string goodbyeMessage = "Good bye!"; } }