-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprintMap.cpp
More file actions
31 lines (28 loc) · 1.4 KB
/
printMap.cpp
File metadata and controls
31 lines (28 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "printMap.h"
printMap::printMap(Character* _Player):Command("printMap", ""){
Player = _Player;
}
void printMap::execute(){
std::cout << "\n***************" << std::endl;
std::cout << "*░░░**░░░**░░░*" << std::endl;
std::cout << "*░O░░░░3░░░░E░*" << std::endl;
std::cout << "*░░░**░░░**░░░*" << std::endl;
std::cout << "******░░░******" << std::endl;
std::cout << "*░░░**░░░*" << std::endl;
std::cout << "*░C░░░░2░*" << std::endl;
std::cout << "*░░░**░░░*" << std::endl;
std::cout << "******░░░*" << std::endl;
std::cout << "*░░░**░░░*" << std::endl;
std::cout << "*░W░░░░1░*" << std::endl;
std::cout << "*░░░**░░░*" << std::endl;
std::cout << "**********\n" << std::endl;
// std::cout << "*░░░**░░░*" << std::endl;
// std::cout << "*░4░░░░░░*" << std::endl;
// std::cout << "*░░░**░░░*" << std::endl;
// std::cout << "******░░░*" << std::endl;
// std::cout << "*░░░**░░░*" << std::endl;
// std::cout << "*░5░░░░░░*" << std::endl;
// std::cout << "*░░░**░░░*" << std::endl;
// std::cout << "**********" << std::endl;
std::cout << "You're in the room: " << Player->getPosition()->getDescription() << std::endl;
}