X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fbadguy%2Ffish.hpp;h=eb58db4262c0a365c9461a9d82d1e35084fae792;hb=b91dbe6bc1d5047a127cdc688dda836c59e8c2d1;hp=413b5c27e0e4f7a875dc1515b8b8a398e9682e6d;hpb=a113d3bd1feddd510e3b2852b0d42522735eee40;p=supertux.git diff --git a/src/badguy/fish.hpp b/src/badguy/fish.hpp index 413b5c27e..eb58db426 100644 --- a/src/badguy/fish.hpp +++ b/src/badguy/fish.hpp @@ -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,18 +12,17 @@ // 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 __FISH_H__ -#define __FISH_H__ +#ifndef HEADER_SUPERTUX_BADGUY_FISH_HPP +#define HEADER_SUPERTUX_BADGUY_FISH_HPP -#include "badguy.hpp" +#include "badguy/badguy.hpp" class Fish : public BadGuy { public: - Fish(const lisp::Lisp& ); + Fish(const Reader& ); Fish(const Vector& pos); void draw(DrawingContext& context); @@ -34,10 +31,11 @@ public: HitResponse collision_badguy(BadGuy& , const CollisionHit& ); void collision_tile(uint32_t tile_attributes); - void write(lisp::Writer& ); void active_update(float); - virtual Fish* clone() const { return new Fish(*this); } + void freeze(); + void unfreeze(); + bool is_freezable() const; private: HitResponse hit(const CollisionHit& ); @@ -49,3 +47,5 @@ private: }; #endif + +/* EOF */