Guest User

Untitled

a guest
Dec 18th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. struct Skills
  8. {
  9. string type;
  10. int value;
  11. };
  12. vector< vector<Skills> > statTable;
  13. statTable[0][0].type = "test";
  14. cout << statTable[0][0].type << endl;
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment