X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fobject%2Fflower.cpp;h=4b73264affd3582c0733e196e99ebea3d4b52d89;hb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;hp=ec2462c70c5afe4ad4394cb5a4f65eed204b0773;hpb=f406067af6cbeb0a638078fe1d386d092583909c;p=supertux.git diff --git a/src/object/flower.cpp b/src/object/flower.cpp index ec2462c70..4b73264af 100644 --- a/src/object/flower.cpp +++ b/src/object/flower.cpp @@ -1,12 +1,10 @@ -// $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 -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,23 +12,15 @@ // 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. - -#include +// along with this program. If not, see . -#include -#include -#include "flower.hpp" -#include "resources.hpp" -#include "camera.hpp" -#include "sector.hpp" -#include "player.hpp" #include "audio/sound_manager.hpp" +#include "object/flower.hpp" +#include "object/player.hpp" #include "sprite/sprite_manager.hpp" -Flower::Flower(BonusType _type) - : type(_type) +Flower::Flower(BonusType _type) : + type(_type) { bbox.set_size(32, 32); @@ -50,7 +40,6 @@ Flower::Flower(BonusType _type) Flower::~Flower() { - delete sprite; } void @@ -78,3 +67,5 @@ Flower::collision(GameObject& other, const CollisionHit& ) remove_me(); return ABORT_MOVE; } + +/* EOF */