I've been searching this for a little while now and I'm absolutely unable to figure out what the problem is.
This is the code I'm having the issue with:
std::vector<std::string> TexName;
TexName.push_back("mega.png");
and I get...
error: 'TexName' does not name a type
I've included both vector and string library, theres no name conflicts, and I've tried using namespace std; but it didn't work. While searching I seen other people using similar code; with the vector of strings, and it seemed to work with them.
Any help plz?
EDIT:
I figured it out. I didn't have it in a function. Oops. Thanks for your time.