X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fobject%2Fspotlight.hpp;h=006a49d48851e755f3840ae54670b292c1a32e3d;hb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;hp=b48ddfd0acc76d7c5a38b24f90dce451c76dee2f;hpb=f406067af6cbeb0a638078fe1d386d092583909c;p=supertux.git diff --git a/src/object/spotlight.hpp b/src/object/spotlight.hpp index b48ddfd0a..006a49d48 100644 --- a/src/object/spotlight.hpp +++ b/src/object/spotlight.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,15 +12,16 @@ // 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 HEADER_SUPERTUX_OBJECT_SPOTLIGHT_HPP +#define HEADER_SUPERTUX_OBJECT_SPOTLIGHT_HPP -#ifndef __SPOTLIGHT_HPP__ -#define __SPOTLIGHT_HPP__ +#include -#include "game_object.hpp" +#include "util/reader_fwd.hpp" #include "math/vector.hpp" -#include "lisp/lisp.hpp" +#include "supertux/game_object.hpp" #include "video/color.hpp" class Sprite; @@ -30,7 +29,7 @@ class Sprite; class Spotlight : public GameObject { public: - Spotlight(const lisp::Lisp& reader); + Spotlight(const Reader& reader); virtual ~Spotlight(); void update(float elapsed_time); @@ -39,13 +38,15 @@ public: private: Vector position; float angle; - Sprite* center; - Sprite* base; - Sprite* lights; - Sprite* light; - Sprite* lightcone; + std::auto_ptr center; + std::auto_ptr base; + std::auto_ptr lights; + std::auto_ptr light; + std::auto_ptr lightcone; Color color; }; #endif + +/* EOF */