From 9d3594205d58ff8deab5b31d7aaae7b90fa0c434 Mon Sep 17 00:00:00 2001 From: Alexander Akulich Date: Wed, 15 Dec 2021 02:26:49 +0300 Subject: [PATCH] Console: Add Config() getter as in other classes --- src/engine/shared/console.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/engine/shared/console.h b/src/engine/shared/console.h index 050b415ca..50fe11795 100644 --- a/src/engine/shared/console.h +++ b/src/engine/shared/console.h @@ -194,6 +194,8 @@ class CConsole : public IConsole CCommand *FindCommand(const char *pName, int FlagMask); public: + CConfig *Config() { return m_pConfig; } + CConsole(int FlagMask); ~CConsole();