Fixed include guards and comments.

This commit is contained in:
Felix Ableitner 2012-12-20 15:07:47 +01:00
parent fa5c64d043
commit 99243ccd60
2 changed files with 8 additions and 8 deletions

View file

@ -1,12 +1,12 @@
/* /*
* Physical.h * Body.h
* *
* Created on: 11.08.2012 * Created on: 11.08.2012
* Author: Felix * Author: Felix
*/ */
#ifndef DG_PHYSICAL_H_ #ifndef DG_BODY_H_
#define DG_PHYSICAL_H_ #define DG_BODY_H_
#include <Box2D/Box2D.h> #include <Box2D/Box2D.h>
@ -107,4 +107,4 @@ private:
bool mDelete; bool mDelete;
}; };
#endif /* DG_PHYSICAL_H_ */ #endif /* DG_BODY_H_ */

View file

@ -1,12 +1,12 @@
/* /*
* astar.h * pathfinder.h
* *
* Created on: 24.09.2012 * Created on: 24.09.2012
* Author: Felix * Author: Felix
*/ */
#ifndef ASTAR_H_ #ifndef PATHFINDER_H_
#define ASTAR_H_ #define PATHFINDER_H_
#include <Box2D/Box2D.h> #include <Box2D/Box2D.h>
@ -32,4 +32,4 @@ private:
b2World& mWorld; b2World& mWorld;
}; };
#endif /* ASTAR_H_ */ #endif /* PATHFINDER_H_ */