Tobee_RPG/src/main.cpp

26 lines
876 B
C++
Raw Normal View History

2021-08-04 16:09:11 +00:00
/* This code has no license so you can do whatever you want with it.
made by M-C-O-B 2021
*/
#include <iostream>
2021-08-08 13:32:35 +00:00
#include "TobeeRPG.h"
2021-08-04 16:09:11 +00:00
using namespace std;
void PrgEnd() {
string Name; // this makes a string called name
cout << "To exit the program please type your name: ";
cin >> Name; // this gets what you typed
cout << "Thanks for playing: " << Name << endl;// this displays what you type
}
int main(){
cout << "Tobi was walking home from his long ass walk" << endl;
cout << "Then FROM OUTTA NOWHERE HE GOT JUMPED BY SOME ASSHOLE\n" << endl;
cout << "To play just type a number then hit enter" << endl;
cout << "Oh yeah if you type a letter the game fuckin breaks, enjoy\n" << endl;
RPG();
cout << "Happy Birthday Tobi\n";
PrgEnd();
return 0;
}