Advertisement
bojandam1

maze.h

May 10th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.28 KB | None | 0 0
  1. #pragma once
  2. #define M 15
  3. #define N1 60
  4. std::string maze[M]={
  5. "#############################################################\n",
  6. "#U #  #  C     #     #  #     #                             #\n",
  7. "#  #  #######  # C#  #  ####  #  ####  #######  #############\n",
  8. "#  #    C   #  #  #     #    C   #    C   #  #        #  #  #\n",
  9. "#  #  #######  #######  #  #  #############  ####  #  #  #  #\n",
  10. "#  # C         #  #  #     #     #  # C#        #  #        #\n",
  11. "#  #######  #  #  #  ##########  #  #  ####  #  ##########  #\n",
  12. "#           #  # C                           #  #     #     #\n",
  13. "#  #############  ####  ####  ####  ####  ##########  #######\n",
  14. "#     #        #  #C    #C    #  # C#  #     #  #           #\n",
  15. "#  #  ####  ####  #############C #### C#  ####  #  #######  #\n",
  16. "#  #C #        #  #C    #C #      C #     # C      # C   #  #\n",
  17. "#  #######  #  #  ####  #  #  ####  #  #  #  ####  #  #  ####\n",
  18. "#      C    #C       #    C   # C      #     # C      #   C |\n",
  19. "#############################################################\n"};
  20.  
  21.  
  22. #include <windows.h>
  23.  
  24. void cls()
  25. {
  26.     HANDLE hOut;
  27.     COORD Position;
  28.  
  29.     hOut = GetStdHandle(STD_OUTPUT_HANDLE);
  30.  
  31.     Position.X = 0;
  32.     Position.Y = 0;
  33.     SetConsoleCursorPosition(hOut, Position);
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement