Files
vimix/Log.h
2021-01-19 19:07:24 +01:00

19 lines
352 B
C++

#ifndef __LOG_H_
#define __LOG_H_
namespace Log
{
// log
void Info(const char* fmt, ...);
void Notify(const char* fmt, ...);
void Warning(const char* fmt, ...);
void Error(const char* fmt, ...);
// Draw logs
void ShowLogWindow(bool* p_open = nullptr);
void Render(bool *showWarnings = nullptr);
}
#endif // __LOG_H_