3716980632f06155e885450ea786b0aeacb14ad4
[physics.git] / src / Effects / Screen.h
1 #ifndef SCREEN_H
2 #define SCREEN_H
3
4 #include "Effect.h"
5 #include "../Vector2.h"
6
7
8 /// ***** Header Class *****
9
10 class Screen: public Effect
11 {
12   public:
13     Screen();
14     ~Screen();
15
16     Vector2 velocityDelta(const PhysicsEntity*, float) const;
17 };
18
19 #endif // SCREEN_H