My previous demo was an XNA project that had a game window, as well as a console window for debugging information, however, the option is either not there or moved in a C++ project. Does anyone know how to enable a console window that will run alongside a game window in VS2010?
Share
You can use
AllocConsoleto create a console for you process. Once you do that, you can usestd::coutor, perish the thought,printfto write to the console.