VS Error
I am getting this error in VS2012:
error LNK2001: unresolved external symbol "public: virtual void __thiscall Game::resetAll(void)" (?resetAll@Game@@UAEXXZ) |
I am not sure what this means.
Thank you!
Edit: I currently don't have the code w/ me. I am out of town right now.
Last edited on
"unresolved external symbol" typically means you are calling a function that you never gave a body to.
So you have a function void Game::resetAll()
that you have a prototype for... and are calling.... but you never gave it a body.
Yeah, I found that after I posted, but never got to mark this solved.
Thanks for your reply!
Topic archived. No new replies allowed.