Console Library
Creating and writing to a separate output console window.
rconsolecreateCreates a console window. Text previously output to the console will not be cleared. Only 1 console can be created.rconsoledestroyDestroys the console window. Text output to the console will be cleared.rconsoleclearClears all text in the console.rconsolesettitleSets the title of the console window.rconsoleprintPrints to the console. If the console hasn't been already created, rconsoleprint will create one.rconsoleinfoPrints a dark blue message to the console. If the console hasn't been already created, rconsoleinfo will create one.rconsolewarnPrints a yellow message to the console. If the console hasn't been already created, rconsolewarn will create one.rconsoleerrorPrints a red message to the console. If the console hasn't been already created, rconsoleerror will create one.rconsoleinputReceives input directly from the console. Any thread that runs this function will be suspended until input is received.