massive cleaning of file section headers
[physics.git] / src / Effects / Gravity.h
CommitLineData
cd838993
PG
1#ifndef GRAVITY_H
2#define GRAVITY_H
3
4#include "Effect.h"
617dcc71
PG
5#include "../Vector2.h"
6
cd838993
PG
7
8/// ***** Header Class *****
617dcc71 9
cd838993
PG
10class Gravity: public Effect
11{
ec70635e
PG
12 public:
13 Gravity();
2c18685d 14 ~Gravity();
ec70635e 15
6aad402a 16 Vector2 forceDelta(const PhysicsEntity*, float) const;
ec70635e 17};
cd838993
PG
18
19#endif // GRAVITY_H