summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/flyingObject.h2
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 ) {}