Ejemplo n.º 1
0
        public LabyrinthGame()
        {
            this.Name   = "Labyrinth";
            this.Rules  = "You must sent only one string that contains sybmols 'u', 'l', 'd' and 'r' (up, left, down and right) - the shortest way to the finish.";
            this.Rules += "\n\tStart point = s";
            this.Rules += "\n\tEnd point = e";
            this.Rules += "\nType 'Start' to begin";

            GameLabyrinth = Labyrinth.Generate();
        }