mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-13 03:09:57 +01:00
12 lines
191 B
C++
12 lines
191 B
C++
#ifndef __LOG_H_
|
|
#define __LOG_H_
|
|
|
|
namespace Log
|
|
{
|
|
// log info
|
|
void Info(const char* fmt, ...);
|
|
// Draw logs
|
|
void ShowLogWindow(bool* p_open = nullptr);
|
|
};
|
|
|
|
#endif // __LOG_H_
|