- added new console font
[supertux.git] / src / object / rainsplash.cpp
index b4241f6..c69f817 100644 (file)
@@ -16,6 +16,7 @@
 //  You should have received a copy of the GNU General Public License
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#include <config.h>
 
 #include "rainsplash.hpp"
 #include "sector.hpp"
@@ -27,7 +28,7 @@ RainSplash::RainSplash(Vector pos, bool vertical)
   if (vertical) sprite = sprite_manager->create("images/objects/particles/rainsplash-vertical.sprite");
   else sprite = sprite_manager->create("images/objects/particles/rainsplash.sprite");
 }
-  
+
 RainSplash::~RainSplash() {
   remove_me();
 }
@@ -38,7 +39,7 @@ RainSplash::hit(Player& )
 }
 
 void
-RainSplash::update(float time) 
+RainSplash::update(float time)
 {
   time = 0;//just so i don't get an "unused variable" error - don't know how to circumvent this
   frame++;
@@ -46,7 +47,7 @@ RainSplash::update(float time)
 }
 
 void
-RainSplash::draw(DrawingContext& context) 
+RainSplash::draw(DrawingContext& context)
 {
    sprite->draw(context, position, LAYER_OBJECTS);
 }