X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Frainsplash.cpp;h=c69f817a0494da81e794b427d87dc536976a06c5;hb=20f50f690c18aefbedeeb43eda094c8cb70351a9;hp=d53e5314ea927304911630135ff6655ad72c15ef;hpb=39c8f41f9d46e3d2b890961814193363f0fa10c5;p=supertux.git diff --git a/src/object/rainsplash.cpp b/src/object/rainsplash.cpp index d53e5314e..c69f817a0 100644 --- a/src/object/rainsplash.cpp +++ b/src/object/rainsplash.cpp @@ -1,4 +1,7 @@ +// $Id$ +// // SuperTux +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -9,11 +12,12 @@ // 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, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -// 02111-1307, USA. +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +#include + #include "rainsplash.hpp" #include "sector.hpp" @@ -24,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(); } @@ -35,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++; @@ -43,7 +47,7 @@ RainSplash::update(float time) } void -RainSplash::draw(DrawingContext& context) +RainSplash::draw(DrawingContext& context) { sprite->draw(context, position, LAYER_OBJECTS); }