-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_main.cpp
More file actions
41 lines (37 loc) · 2.18 KB
/
Copy path_main.cpp
File metadata and controls
41 lines (37 loc) · 2.18 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
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include <string>
using namespace std;
/**
* @brief Dungeon of Rudix
* @param argc
* @param argv
* @return
*/
int main(int argc, char **argv)
{
system("cls");
cout << "*==================* *====================================*" << endl;
cout << "* * * *" << endl;
cout << "* 0: aaaa * * Nasel jsi pokad *" << endl;
cout << "* 1: bbb * * Co snim chces udelat? *" << endl;
cout << "* 2: ccccc * * *" << endl;
cout << "* * * *" << endl;
cout << "*==================* *====================================*" << endl;
cout << "*=========================================================*" << endl;
cout << "* *" << endl;
cout << "* ════════ ════════ *" << endl;
cout << "* ║ ║___║ ║ *" << endl;
cout << "* ║ PL ║ *" << endl;
cout << "* ║ ║¯¯¯║ ║ *" << endl;
cout << "* ════════ ══ ══ *" << endl;
cout << "* | | *" << endl;
cout << "* | | *" << endl;
cout << "* ══ ══ *" << endl;
cout << "* ║ ║ *" << endl;
cout << "* ║ ║ *" << endl;
cout << "* ║ ║ *" << endl;
cout << "* ════════ *" << endl;
cout << "* *" << endl;
cout << "*=========================================================*" << endl;
return 0;
}