Skip to content
Permalink
Browse files
Add files via upload
please incorporate this into the main file. thx guys.
  • Loading branch information
protopad committed Mar 9, 2020
1 parent ba0fbaa commit 9d82c453501e90b50260b64b9f72fbde68ac627b
Showing 1 changed file with 19 additions and 0 deletions.
@@ -0,0 +1,19 @@
#include<windows.h>
#include<iostream>
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;
}

0 comments on commit 9d82c45

Please sign in to comment.