Fix music not properly fading in again
[supertux.git] / src / scripting / camera.hpp
index c94777a..b35a238 100644 (file)
@@ -1,13 +1,28 @@
-#ifndef __CAMERA_H__
-#define __CAMERA_H__
+//  SuperTux
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
+//
+//  This program is free software: you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation, either version 3 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+#ifndef HEADER_SUPERTUX_SCRIPTING_CAMERA_HPP
+#define HEADER_SUPERTUX_SCRIPTING_CAMERA_HPP
 
 #ifndef SCRIPTING_API
 class Camera;
 typedef Camera _Camera;
 #endif
 
-namespace Scripting
-{
+namespace scripting {
 
 class Camera
 {
@@ -17,6 +32,8 @@ public:
   ~Camera();
 #endif
 
+  void reload_config();
+
   /** Shake the camera */
   void shake(float speed, float x, float y);
   /** Set camera to a specific coordinate */
@@ -28,6 +45,10 @@ public:
 
 #ifndef SCRIPTING_API
   _Camera* camera;
+
+private:
+  Camera(const Camera&);
+  Camera& operator=(const Camera&);
 #endif
 };
 
@@ -35,3 +56,4 @@ public:
 
 #endif
 
+/* EOF */