diff options
author | aap <aap@papnet.eu> | 2020-03-23 00:34:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 00:34:41 +0100 |
commit | 4070cad4a746728f0282862aa0a0063c15bbc86e (patch) | |
tree | fd780f1f980c6d2036f8b57c32f75e203c7b39a8 /src/core/Debug.h | |
parent | Fix order of math operations on integers (fires) (diff) | |
parent | merge with upstream (diff) | |
download | re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.gz re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.bz2 re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.lz re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.xz re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.zst re3-4070cad4a746728f0282862aa0a0063c15bbc86e.zip |
Diffstat (limited to 'src/core/Debug.h')
-rw-r--r-- | src/core/Debug.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/Debug.h b/src/core/Debug.h new file mode 100644 index 00000000..395f66af --- /dev/null +++ b/src/core/Debug.h @@ -0,0 +1,11 @@ +#pragma once + +class CDebug +{ + static int ms_nCurrentTextLine; + +public: + static void DebugInitTextBuffer(); + static void DebugDisplayTextBuffer(); + +}; |