When using Visual Studio I normally work in C# so certain things in C++ confuse me (the concepts seem so different yet the names are almost the same)
I created a Console project in which I want to run a different project for testing purposes. I added the project as a reference to the Console App, and then got stuck
There are no namespaces in the projects, so I can't do a using and if I try to include the other file, it cannot find it (and I want to be able to debug through the code in all projects)
The code for the class can be found here (ignore the C# part), it is just a standard console module with nothing in it yet