Advertisement
vencinachev

Maze

Sep 6th, 2019
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. static char[,] lab =
  2.         {
  3.             { ' ', ' ', ' ', '*', ' ', ' ', ' ' },
  4.             { '*', '*', ' ', '*', ' ', '*', ' ' },
  5.             { ' ', ' ', ' ', ' ', ' ', ' ', ' ' },
  6.             { ' ', '*', '*', '*', '*', '*', ' ' },
  7.             { ' ', ' ', ' ', ' ', ' ', ' ', 'f' },
  8.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement