#ifndef CONSOLE_H #define CONSOLE_H #include #include namespace Console { void Attach(); void Detach(); bool Print(const char* fmt, ...); } #endif