12 lines
121 B
C++
12 lines
121 B
C++
#pragma once
|
|
|
|
namespace logger
|
|
{
|
|
void Attach();
|
|
|
|
void Detach();
|
|
|
|
bool Print(const char* fmt, ...);
|
|
|
|
char ReadKey();
|
|
} |