summaryrefslogtreecommitdiff
path: root/cheat/gmod/CLuaShared.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cheat/gmod/CLuaShared.hpp')
-rw-r--r--cheat/gmod/CLuaShared.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/cheat/gmod/CLuaShared.hpp b/cheat/gmod/CLuaShared.hpp
new file mode 100644
index 0000000..1a46e74
--- /dev/null
+++ b/cheat/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