I’m at the point where I have 3 files:
Both of the .cpp files have this line:
#include "FBullCowGame.hpp"
But neither the “main.cpp” nor the “FBullCowGame.hpp” files give any indication of including the other .cpp file “FBullCowGame.cpp.”
How is the second .cpp file able to be used? When compiling do all of the .cpp files in a project essentially get treated as if they were in the same document, one pasted right after the other?