fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / scripting / ambient_sound.hpp
1 #ifndef __SCRIPTING_AMBIENT_SOUND_H__
2 #define __SCRIPTING_AMBIENT_SOUND_H__
3
4 namespace Scripting
5 {
6
7 class AmbientSound
8 {
9 public:
10 #ifndef SCRIPTING_API
11   virtual ~AmbientSound()
12   {}
13 #endif
14
15   virtual void set_pos(float x, float y) = 0;
16   virtual float get_pos_x() = 0;
17   virtual float get_pos_y() = 0;
18 };
19
20 }
21
22 #endif