diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-28 13:51:32 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-28 13:51:32 +0200 |
commit | f7a042223f9c82c7764c0df3a3531bda04e9ad64 (patch) | |
tree | 1d227816dc680ea883ba16a385c2151714e65961 /src/script/scripting_client.h | |
parent | 344fddc1727f637b3c4e2a9b88844d952b91fe4f (diff) | |
download | dragonfireclient-f7a042223f9c82c7764c0df3a3531bda04e9ad64.tar.xz |
Added cheat Menu
Diffstat (limited to 'src/script/scripting_client.h')
-rw-r--r-- | src/script/scripting_client.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/script/scripting_client.h b/src/script/scripting_client.h index 3088029f0..e162f8bcf 100644 --- a/src/script/scripting_client.h +++ b/src/script/scripting_client.h @@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "cpp_api/s_base.h" #include "cpp_api/s_client.h" +#include "cpp_api/s_cheats.h" #include "cpp_api/s_modchannels.h" #include "cpp_api/s_security.h" @@ -34,7 +35,8 @@ class ClientScripting: virtual public ScriptApiBase, public ScriptApiSecurity, public ScriptApiClient, - public ScriptApiModChannels + public ScriptApiModChannels, + public ScriptApiCheats { public: ClientScripting(Client *client); |