Hello, I’m trying to continue building out my C++ project and organize it the way I like. That includes moving the .h and .cpp files in to a source folder called “src.”
Unfortunately, I’m no longer able to compile. I get this error:
undefined reference to
PlayerCharacter::PlayerCharacter(int, int)`
How can I configure the project so that I can include .h files from the “src” folder in my main.cpp file?