mirror of
https://github.com/Relintai/godot-lportal.git
synced 2024-11-07 12:42:09 +01:00
19 lines
241 B
C++
19 lines
241 B
C++
#include "ldebug.h"
|
|
|
|
namespace Lawn
|
|
{
|
|
|
|
int LDebug::m_iLoggingLevel = 0; // 2
|
|
int LDebug::m_iWarningLevel = 0;
|
|
int LDebug::m_iTabDepth = 0;
|
|
bool LDebug::m_bRunning = true;
|
|
|
|
|
|
void LDebug::print(String sz)
|
|
{
|
|
print_line(sz);
|
|
}
|
|
|
|
|
|
} // namespace
|