X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Fexplosion.hpp;h=0d556c4aa4dcdd8228a3bfd6b568316f8bc92728;hb=78ac7aef674f518549f96160c6354b589553f952;hp=4ae40e424a6d6ca2bd90d5dd2c3b9c82b958c8fd;hpb=11f76210a19bcee328439bbf5b82a436cd6a9c38;p=supertux.git diff --git a/src/object/explosion.hpp b/src/object/explosion.hpp index 4ae40e424..0d556c4aa 100644 --- a/src/object/explosion.hpp +++ b/src/object/explosion.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux -- Explosion object // Copyright (C) 2007 Christoph Sommer // -// 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,14 +12,12 @@ // 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. +// along with this program. If not, see . -#ifndef __EXPLOSION_H__ -#define __EXPLOSION_H__ +#ifndef HEADER_SUPERTUX_OBJECT_EXPLOSION_HPP +#define HEADER_SUPERTUX_OBJECT_EXPLOSION_HPP -#include "moving_sprite.hpp" -#include "lisp/lisp.hpp" +#include "object/moving_sprite.hpp" /** * Just your average explosion - goes boom, hurts Tux @@ -33,7 +29,7 @@ public: * Create new Explosion centered(!) at @c pos */ Explosion(const Vector& pos); - Explosion(const lisp::Lisp& reader); + Explosion(const Reader& reader); void update(float elapsed_time); HitResponse collision(GameObject& other, const CollisionHit& hit); @@ -55,3 +51,4 @@ private: #endif +/* EOF */