can someone help me im running into some problems

deleted
Last edited on
You need to post the complete error messages. Those messages should tell you exactly where the problems are detected, ie the file name and the line number within that file to aid in locating and fixing the problems.

I updated the topic with new information
Look at the errors that you provided. Take the second error. It says that the function Dragon::getName is unresolved (the funny names for the return type and function argument types are due to name mangling--look it up if you want). Why is Dragon::getName unresolved? Because you never defined it. Dragon.h declares the function, but the definition is not found in Dragon.hpp nor Dragon.cpp.

I believe all of the errors are similar.
All of those errors are linker errors which usually means that the function implementations can't be found. Were did you implement the functions in question?

Topic archived. No new replies allowed.