Use boost::shared_ptr<Surface> instead of std::auto_ptr<Surface>
[supertux.git] / src / badguy / yeti.hpp
index ac2603b..326b263 100644 (file)
@@ -63,7 +63,7 @@ private:
   Timer safe_timer;
   int stomp_count;
   int hit_points;
-  std::auto_ptr<Surface> hud_head;
+  SurfacePtr hud_head;
 };
 
 #endif