Code modernization: src/m* (part 2)
[oweals/minetest.git] / src / script / scripting_server.h
index 1b335406e77e9bf4394544bf225013ce96c208ac..b549a1bc95e7c724626537939488a265627883d7 100644 (file)
@@ -17,9 +17,7 @@ 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"
@@ -28,7 +26,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "cpp_api/s_player.h"
 #include "cpp_api/s_server.h"
 #include "cpp_api/s_security.h"
-#include "util/basic_macros.h"
 
 /*****************************************************************************/
 /* Scripting <-> Server Game Interface                                       */
@@ -51,9 +48,6 @@ public:
 
 private:
        void InitializeModApi(lua_State *L, int top);
-       DISABLE_CLASS_COPY(ServerScripting);
 };
 
 void log_deprecated(const std::string &message);
-
-#endif /* SCRIPTING_GAME_H_ */