From 7bec26134abec8a80698a065acbb5ed873430fca Mon Sep 17 00:00:00 2001 From: Simponic Date: Tue, 30 Jun 2020 20:16:33 -0600 Subject: [PATCH] Fixed a broken semicolon fml --- src/flyingObject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) {}