From 7ccb819f867493f8ec202ea3b39c94c198c64584 Mon Sep 17 00:00:00 2001 From: JustSomePwner Date: Thu, 30 Aug 2018 14:01:54 +0200 Subject: first --- gmod/CLuaShared.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 gmod/CLuaShared.hpp (limited to 'gmod/CLuaShared.hpp') diff --git a/gmod/CLuaShared.hpp b/gmod/CLuaShared.hpp new file mode 100644 index 0000000..1a46e74 --- /dev/null +++ b/gmod/CLuaShared.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include "CLuaInterface.hpp" + +class CLuaShared +{ +public: + virtual ~CLuaShared( ); + virtual void Init( ); + virtual void ShutDown( ); + virtual void DumpStats( ); + virtual CLuaInterface* CreateLuaInterface( STATE_TYPE, bool ); + virtual void CloseLuaInterface( CLuaInterface* ); + virtual CLuaInterface* GetLuaInterface( STATE_TYPE ); +}; \ No newline at end of file -- cgit v1.2.3