From 9d82c453501e90b50260b64b9f72fbde68ac627b Mon Sep 17 00:00:00 2001 From: "Dimitros Protopapas (protopad)" Date: Mon, 9 Mar 2020 10:26:56 +0000 Subject: [PATCH] Add files via upload please incorporate this into the main file. thx guys. --- manual for rougelike.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 manual for rougelike.h diff --git a/manual for rougelike.h b/manual for rougelike.h new file mode 100644 index 0000000..e9f22dd --- /dev/null +++ b/manual for rougelike.h @@ -0,0 +1,19 @@ +#include +#include +using namespace std; + +int main(void) +{ + bool done = false; + + while(!done) + if(GetAsyncKeyState(0x4D) != 0) + done = true; + + cout << "@=character" << endl; + cout << "G=Goblin" << endl; + cout << "#=wall" << endl; + cout << ".= a door or unused" << endl; + cin.get(); + return 0; +}