mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-05 23:40:02 +01:00
18 lines
285 B
C++
18 lines
285 B
C++
#ifndef __LOG_H_
|
|
#define __LOG_H_
|
|
|
|
namespace Log
|
|
{
|
|
// log
|
|
void Info(const char* fmt, ...);
|
|
void Warning(const char* fmt, ...);
|
|
void Error(const char* fmt, ...);
|
|
|
|
// Draw logs
|
|
void ShowLogWindow(bool* p_open = nullptr);
|
|
|
|
void Render();
|
|
}
|
|
|
|
#endif // __LOG_H_
|