diff options
Diffstat (limited to 'src/flyingObject.h')
-rw-r--r-- | src/flyingObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flyingObject.h b/src/flyingObject.h index 2e77e5e..3296c5a 100644 --- a/src/flyingObject.h +++ b/src/flyingObject.h @@ -9,7 +9,7 @@ class FlyingObject { protected: Point point; - Velocity velocity + Velocity velocity; bool alive; public: FlyingObject() : point( Point() ) , velocity( Velocity() ) , alive( true ) {} |