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