renamed all .h to .hpp
[supertux.git] / src / scripting / camera.hpp
1 #ifndef __CAMERA_H__
2 #define __CAMERA_H__
3
4 namespace Scripting
5 {
6
7 class Camera
8 {
9 public:
10 #ifndef SCRIPTING_API
11     Camera();
12     ~Camera();
13 #endif
14
15     /** Shake the camera */
16     void shake(float speed, float x, float y);
17     /** Set camera to a specific coordinate */
18     void set_pos(float x, float y);
19     /** Set camera to a specific mode, can be "normal", "manual" */
20     void set_mode(const std::string& mode);
21 };
22
23 }
24
25 #endif
26