7 lines
113 B
C++
7 lines
113 B
C++
|
#pragma once
|
||
|
|
||
|
namespace game_console
|
||
|
{
|
||
|
void print(const char* fmt, ...);
|
||
|
void print(const std::string& data);
|
||
|
}
|