-renamed ViewPort to Camera
[supertux.git] / src / drawable.h
index 605c336..d96f200 100644 (file)
@@ -1,7 +1,25 @@
+//  $Id$
+//
+//  SuperTux -  A Jump'n Run
+//  Copyright (C) 2004 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 distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  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 __DRAWABLE_H__
 #define __DRAWABLE_H__
 
-class ViewPort;
+class Camera;
 
 /** interface for all game objects that can be drawn on screen.
  */
@@ -10,7 +28,7 @@ class Drawable
 public:
   /** This function draws the object on screen.
    */                                              
-  virtual void draw(ViewPort& viewport, int layer) = 0;
+  virtual void draw(Camera& viewport, int layer) = 0;
 };
 
 #endif