Advertisement
AgustinMayta

case 2

Jun 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. case 2:
  2. Console::SetCursorPosition(rx, ry);
  3. Console::BackgroundColor = ConsoleColor::Black;
  4. cout << " ";
  5. Console::SetCursorPosition(rx, ry + 1);
  6. Console::BackgroundColor = ConsoleColor::Black;
  7. cout << " ";
  8. if (ry == 5 || ry == 13 || ry == 21 || ry == 29 || ry == 37)
  9. {
  10. Console::ForegroundColor = ConsoleColor::Yellow;
  11. Console::SetCursorPosition(rx, ry);
  12. cout << "===";
  13. Console::ForegroundColor = ConsoleColor::Yellow;
  14. Console::SetCursorPosition(rx, ry+1);
  15. cout << " ";
  16. }
  17. break;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement