fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / sprite / sprite_manager.hpp
index 01ec930..7b5c1e4 100644 (file)
@@ -1,7 +1,7 @@
 //  $Id$
-// 
+//
 //  SuperTux
-//  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>
+//  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
@@ -12,7 +12,7 @@
 //  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.
@@ -30,12 +30,11 @@ class SpriteManager
 private:
   typedef std::map<std::string, SpriteData*> Sprites;
   Sprites sprites;
-  
+
 public:
-  SpriteManager(const std::string& filename);
+  SpriteManager();
   ~SpriteManager();
 
-  void load_resfile(const std::string& filename);
   /** loads a sprite. */
   Sprite* create(const std::string& filename);
 
@@ -43,4 +42,6 @@ private:
   SpriteData* load(const std::string& filename);
 };
 
+extern SpriteManager* sprite_manager;
+
 #endif