- Remove ManagedSoundSource
[supertux.git] / src / badguy / flame.hpp
index 303c698..b099eae 100644 (file)
@@ -34,14 +34,12 @@ public:
   void active_update(float elapsed_time);
   void kill_fall();
 
-  virtual Flame* clone() const { return new Flame(*this); }
-
 private:
   float angle;
   float radius;
   float speed;
 
-  std::auto_ptr<SoundSource> source;
+  std::auto_ptr<SoundSource> sound_source;
 };
 
 #endif