Added missing includes to Squirrel and SuperTux to make -DENABLE_SQDBG=ON compile...
[supertux.git] / src / scripting / platform.hpp
index aeb6257..9ffafbf 100644 (file)
@@ -22,7 +22,7 @@ class Platform;
 typedef Platform _Platform;
 #endif
 
-namespace Scripting {
+namespace scripting {
 
 class Platform
 {
@@ -43,6 +43,10 @@ public:
 
 #ifndef SCRIPTING_API
   _Platform* platform;
+
+private:
+  Platform(const Platform&);
+  Platform& operator=(const Platform&);
 #endif
 };