massive cleaning of file section headers
[physics.git] / src / Entities / Particle.cpp
index da9a6d1..6aae3ed 100644 (file)
@@ -1,7 +1,10 @@
 #include "Particle.h"
+
 #include "../Vector2.h"
 
-/// ***** Public Class Methods *****
+
+/// ***** Constructors/Destructors *****
+
 Particle::Particle(const Vector2& pos, bool canDie)
     : Entity(pos), canDie(canDie)
 {
@@ -17,6 +20,8 @@ Particle::~Particle()
 
 }
 
+/// ***** Public Class Methods *****
+
 void Particle::update(float time_step)
 {
     if(isDead)