-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscene.cpp
More file actions
20 lines (18 loc) · 897 Bytes
/
scene.cpp
File metadata and controls
20 lines (18 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include <windows.h>
#include <conio.h>
#include "scene.h"
void showIntro()
{
system("cls");
std::cout << "+------------------------------------------------------------+\n";
std::cout << "| |\n";
std::cout << "| WELCOME TO |\n";
std::cout << "| |\n";
std::cout << "| COWBOY C++: BATTLE AND QUIZ |\n";
std::cout << "| |\n";
std::cout << "| Press any key to start your journey... |\n";
std::cout << "| |\n";
std::cout << "+------------------------------------------------------------+";
getch();
}