Remove levels from Incubator island worldmap that have been deleted from the directory
[supertux.git] / src / worldmap / tux.hpp
index 745f505..c34a721 100644 (file)
@@ -1,5 +1,5 @@
 //  SuperTux -  A Jump'n Run
-//  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>
+//  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmail.com>
 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
 //
 //  This program is free software: you can redistribute it and/or modify
@@ -22,7 +22,7 @@
 
 class Sprite;
 
-namespace WorldMapNS {
+namespace worldmap {
 
 class WorldMap;
 
@@ -32,7 +32,7 @@ public:
   Direction back_direction;
 private:
   WorldMap* worldmap;
-  std::auto_ptr<Sprite> sprite;
+  SpritePtr sprite;
   Controller* controller;
 
   Direction input_direction;
@@ -75,7 +75,7 @@ private:
   Tux& operator=(const Tux&);
 };
 
-} // namespace WorldMapNS
+} // namespace worldmap
 
 #endif