Hmm I just made something neat

I made a few classes so you can display text like the way you can do with cout. For example:
Code:
rcout << "Max speed: " << bots[NearestBotInd].f_max_speed << "\n";
To display the text in the right-down corner on your screen.
You can use it by adding(and adapting) the files in your project, then declare
something like this in a file like dll.cpp:
Code:
CBaseOutput cout;
CLeftOutput lcout;
CRightOutput rcout;
CMiddleOutput mcout;
and include bot_io in in a file which is 'included' much like util.h
