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; +}