mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
12 lines
229 B
C
12 lines
229 B
C
|
#ifndef __CORE_DEBUG_LOG_H
|
||
|
#define __CORE_DEBUG_LOG_H
|
||
|
|
||
|
namespace Log
|
||
|
{
|
||
|
void Init();
|
||
|
void AddEntry(char *p_fileName, int lineNumber, char *p_functionName, char *p_message=NULL);
|
||
|
}
|
||
|
|
||
|
#endif // #ifndef __CORE_DEBUG_LOG_H
|
||
|
|