- More work on scripting interface
[supertux.git] / src / scripting / camera.cpp
1 #include <config.h>
2
3 #include <string>
4 #include <stdio.h>
5 #include "camera.h"
6
7 #define NOIMPL      printf("%s not implemented.\n", __PRETTY_FUNCTION__);
8
9 namespace Scripting
10 {
11   Camera::Camera()
12   { }
13
14   Camera::~Camera()
15   { }
16   
17   void
18   Camera::shake(float , float , float )
19   {
20     NOIMPL;
21   }
22   
23   void
24   Camera::set_pos(float , float )
25   {
26     NOIMPL;
27   }
28
29   void
30   Camera::set_mode(const std::string& )
31   {
32     NOIMPL;
33   }  
34 }