Removed trailing whitespace from all *.?pp files
[supertux.git] / src / object / cloud_particle_system.hpp
index db7b3d3..f4c45fa 100644 (file)
@@ -20,6 +20,7 @@
 #include <memory>
 
 #include "object/particlesystem.hpp"
+#include "video/surface_ptr.hpp"
 
 class CloudParticleSystem : public ParticleSystem
 {
@@ -28,7 +29,7 @@ public:
   virtual ~CloudParticleSystem();
 
   void parse(const Reader& lisp);
-  
+
   virtual void update(float elapsed_time);
 
   std::string type() const
@@ -45,7 +46,7 @@ private:
     {}
   };
 
-  std::auto_ptr<Surface> cloudimage;
+  SurfacePtr cloudimage;
 
 private:
   CloudParticleSystem(const CloudParticleSystem&);