]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/script/scripting_server.h
Add formspec theming using prepended strings
[dragonfireclient.git] / src / script / scripting_server.h
index fd97ea40b7e54b67a7df2784ae25d3e9a8b3066c..88cea143ca227d1692a1cfffc02fbed55636409e 100644 (file)
@@ -17,13 +17,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef SERVER_SCRIPTING_H_
-#define SERVER_SCRIPTING_H_
-
+#pragma once
 #include "cpp_api/s_base.h"
 #include "cpp_api/s_entity.h"
 #include "cpp_api/s_env.h"
 #include "cpp_api/s_inventory.h"
+#include "cpp_api/s_modchannels.h"
 #include "cpp_api/s_node.h"
 #include "cpp_api/s_player.h"
 #include "cpp_api/s_server.h"
@@ -38,6 +37,7 @@ class ServerScripting:
                public ScriptApiDetached,
                public ScriptApiEntity,
                public ScriptApiEnv,
+               public ScriptApiModChannels,
                public ScriptApiNode,
                public ScriptApiPlayer,
                public ScriptApiServer,
@@ -53,5 +53,3 @@ class ServerScripting:
 };
 
 void log_deprecated(const std::string &message);
-
-#endif /* SCRIPTING_GAME_H_ */