thug/Code/Core/log.h
2016-02-14 08:39:12 +11:00

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