X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Fspotlight.hpp;h=b48ddfd0acc76d7c5a38b24f90dce451c76dee2f;hb=555d1b7bebb45326d82d934e07463209837309b0;hp=4948fb6740777f34a9555e5a81bdd46595165672;hpb=20a94a721fdee25587d1698ff8cfd6d014b590f1;p=supertux.git diff --git a/src/object/spotlight.hpp b/src/object/spotlight.hpp index 4948fb674..b48ddfd0a 100644 --- a/src/object/spotlight.hpp +++ b/src/object/spotlight.hpp @@ -1,4 +1,4 @@ -// $Id: light.hpp 3327 2006-04-13 15:02:40Z ravu_al_hemio $ +// $Id$ // // SuperTux // Copyright (C) 2006 Matthias Braun @@ -21,7 +21,9 @@ #define __SPOTLIGHT_HPP__ #include "game_object.hpp" +#include "math/vector.hpp" #include "lisp/lisp.hpp" +#include "video/color.hpp" class Sprite; @@ -35,11 +37,15 @@ public: void draw(DrawingContext& context); private: + Vector position; + float angle; Sprite* center; Sprite* base; Sprite* lights; + Sprite* light; Sprite* lightcone; + + Color color; }; #endif -