CGame::Initialise

This commit is contained in:
Nikolay Korolev 2020-03-22 17:23:40 +03:00
commit 34b1881528
35 changed files with 333 additions and 12 deletions

11
src/core/Debug.h Normal file
View file

@ -0,0 +1,11 @@
#pragma once
class CDebug
{
static int ms_nCurrentTextLine;
public:
static void DebugInitTextBuffer();
static void DebugDisplayTextBuffer();
};