Okay so a new problem presents itself to me. I have an intense source code that is currently about 5,000 lines long and is quite frustrating to manage. I want to learn how to use multiple source files, like with c++ you would use include.
// It says it's C# syntax but this is C++ sorry guys. :(
#include <sourceOne.cpp>
#include <sourceTwo.cpp>
#include "headerOne.h"
That kind of thing, I'm creating a windows forms application and this source is getting quite massive. So can anyone explain to me how to do multiple source files? Or even creating dll files for the application to use would help me out. :)
Also, I haven't really had much experience creating pointers but would love to learn how if anyone is willing to give a brief explanation on it. I know what they are so at least that's a start. :)
Thanks,
xX.TaCo.Xx