New sound effects
[supertux.git] / src / video / lightmap.hpp
index 049b21e..544e81b 100644 (file)
@@ -1,12 +1,10 @@
-//  $Id: lightmap.hpp 4986 2007-04-16 17:48:28Z matzeb $
-//
 //  SuperTux
 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 //
-//  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
 //  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.
-#ifndef SUPERTUX_LIGHTMAP_H
-#define SUPERTUX_LIGHTMAP_H
-
-#include <vector>
-#include <string>
-#include <memory>
+//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <stdint.h>
+#ifndef HEADER_SUPERTUX_VIDEO_LIGHTMAP_HPP
+#define HEADER_SUPERTUX_VIDEO_LIGHTMAP_HPP
 
 #include <SDL_video.h>
+#include <memory>
+#include <obstack.h>
+#include <stdint.h>
+#include <string>
+#include <vector>
 
-#include "glutil.hpp"
-#include "obstack/obstack.h"
+#include "math/rectf.hpp"
 #include "math/vector.hpp"
-#include "math/rect.hpp"
-#include "drawing_request.hpp"
-#include "surface.hpp"
-#include "font.hpp"
-#include "color.hpp"
+#include "video/color.hpp"
+#include "video/drawing_request.hpp"
+#include "video/font.hpp"
+#include "video/glutil.hpp"
+#include "video/surface.hpp"
 
 class Texture;
 struct DrawingRequest;
@@ -51,8 +47,10 @@ public:
   virtual void draw_surface_part(const DrawingRequest& request) = 0;
   virtual void draw_gradient(const DrawingRequest& request) = 0;
   virtual void draw_filled_rect(const DrawingRequest& request) = 0;
+  virtual void draw_inverse_ellipse(const DrawingRequest& request) = 0;
   virtual void get_light(const DrawingRequest& request) const = 0;
 };
 
 #endif
 
+/* EOF */