diff options
Diffstat (limited to 'source/cLuaCommandBinder.h')
-rw-r--r-- | source/cLuaCommandBinder.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/source/cLuaCommandBinder.h b/source/cLuaCommandBinder.h index bafc16ee8..b623c5c92 100644 --- a/source/cLuaCommandBinder.h +++ b/source/cLuaCommandBinder.h @@ -1,12 +1,14 @@ -#pragma once
-#include <vector>
-#include <string>
-#include <map>
+#pragma once
struct lua_State;
class cPlugin;
class cPlayer;
+
+
+
+
+
class cLuaCommandBinder
{
public:
@@ -32,5 +34,9 @@ private: typedef std::map< std::string, BoundFunction > CommandMap;
CommandMap m_BoundCommands;
-
};
+
+
+
+
+
|