-
Notifications
You must be signed in to change notification settings - Fork 0
/
Menu.cpp
27 lines (27 loc) · 1.73 KB
/
Menu.cpp
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
#include<iostream>
#include"Headers/pointstuff.h"
using namespace std;
void menu()
{
cout<<" ______ _ _______ _______ _______ _ _______ _______ _______ \n"
<<"( __ \\ |\\ /|( ( /|( ____ \\( ____ \\( ___ )( ( /| |\\ /||\\ /|( ___ )( ___ )( ____ \\|\\ /|\n"
<<"| ( \\ )| ) ( || \\ ( || ( \\/| ( \\/| ( ) || \\ ( | | ) ( || ) ( || ( ) || ( ) || ( \\/| ) ( |\n"
<<"| | ) || | | || \\ | || | | (__ | | | || \\ | | | | _ | || (___) || | | || | | || (_____ | (___) |\n"
<<"| | | || | | || (\\ \\) || | ____ | __) | | | || (\\ \\) | | |( )| || ___ || | | || | | |(_____ )| ___ |\n"
<<"| | ) || | | || | \\ || | \\_ )| ( | | | || | \\ | | || || || ( ) || | | || | | | ) || ( ) |\n"
<<"| (__/ )| (___) || ) \\ || (___) || (____/\\| (___) || ) \\ | | () () || ) ( || (___) || (___) |/\\____) || ) ( |\n"
<<"(______/ (_______)|/ )_)(_______)(_______/(_______)|/ )_) (_______)|/ \\|(_______)(_______)\\_______)|/ \\|\n";
cout<<endl;
cout<<"A game by-";
cout<<endl;
cout<<" NixonZ & GitHG22\n";
cout<<"Description--\n";
cout<<"A simple text-based RPG made in C++, compiled using g++. GPL v3.\n"
<<"The game is not ready yet (perhaps it won't ever be).\n"
<<"It was started for a school project, by Nalin Shani and Harshit Garg.\n"
<<"We don't know the whole of C++ so there might be better ways of doing\n"
<<"so feel free to open an issue and tell us about it.\n"
<<"If we could understand enough, we would push the changes.\n"
<<"And, your name will inducted in the Hall of Fame.(Probably)\n";
cin.get();
}