diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-03-22 17:23:40 +0300 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-03-22 17:23:40 +0300 |
commit | 34b18815286938176b0462ba5a97ea03195409fb (patch) | |
tree | 62e01aacd06b12acb897dc48b45ca800ed77d44d /src/core/Debug.cpp | |
parent | 7d213a1f32c4e8cd45d22f73c637bff0edf731fb (diff) |
CGame::Initialise
Diffstat (limited to 'src/core/Debug.cpp')
-rw-r--r-- | src/core/Debug.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/Debug.cpp b/src/core/Debug.cpp new file mode 100644 index 00000000..1bd353d3 --- /dev/null +++ b/src/core/Debug.cpp @@ -0,0 +1,12 @@ +#include "Debug.h" + +int CDebug::ms_nCurrentTextLine; + +void CDebug::DebugInitTextBuffer() +{ + ms_nCurrentTextLine = 0; +} + +void CDebug::DebugDisplayTextBuffer() +{ +}
\ No newline at end of file |