If you typedef an embeded vector (vector<vector<int>>, if that's even proper syntax), how do you use it afterward? Like,

Code:
typedef vector<vector<int>> MapVect;

MapVect Board(x,y);
That's the only way I can think... Thanks in advance.