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