Here is my code, I took on the project of making a text game then later adding graphics etc. but thats way ahead of time, I reviewed multi dimensional arrays, and came up with this code, this is as far as I could get, im just stuck in confusion.
#include <iostream>
using namespace std;
void charactermove();
const char width = 9;
const char height = 9;
int x;
int y;
class structure{
public:
int xs;
int ys;
char grass;
char wall;
};