diff options
author | Simponic <loganthebean222@gmail.com> | 2020-06-30 20:16:33 -0600 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2020-06-30 20:16:33 -0600 |
commit | 7bec26134abec8a80698a065acbb5ed873430fca (patch) | |
tree | 89ce273229c98117ba008ae4acbbe397d20dcdb4 | |
parent | 4a6e00dfa310598af7d0c4a40ec110123bc08152 (diff) | |
download | asteroids-cs165-7bec26134abec8a80698a065acbb5ed873430fca.tar.gz asteroids-cs165-7bec26134abec8a80698a065acbb5ed873430fca.zip |
Fixed a broken semicolon fml
-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 ) {} |