massive cleaning of file section headers
[physics.git] / src / Entities / WindParticle.cpp
index 91b0dfa..867f271 100644 (file)
@@ -1,7 +1,10 @@
 #include "WindParticle.h"
+
 #include "../Vector2.h"
 
-/// ***** Public Class Methods *****
+
+/// ***** Constructors/Destructors *****
+
 WindParticle::WindParticle(const Vector2& org, float life_time)
     : Point(org, life_time)
 {
@@ -12,6 +15,8 @@ WindParticle::~WindParticle()
 
 }
 
+/// ***** Public Class Methods *****
+
 void WindParticle::update(float time_step)
 {
     Point::update(time_step);