Renamed namespaces to all lowercase
[supertux.git] / src / scripting / wind.hpp
index 517ba3f..e564908 100644 (file)
@@ -22,7 +22,7 @@ class Wind;
 typedef Wind _Wind;
 #endif
 
-namespace Scripting {
+namespace scripting {
 
 class Wind
 {
@@ -40,10 +40,14 @@ public:
 
 #ifndef SCRIPTING_API
   _Wind* wind;
+
+private:
+  Wind(const Wind&);
+  Wind& operator=(const Wind&);
 #endif
 };
 
-}
+} // namespace scripting
 
 #endif