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 ) {}