summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimponic <loganthebean222@gmail.com>2020-06-30 20:16:33 -0600
committerSimponic <loganthebean222@gmail.com>2020-06-30 20:16:33 -0600
commit7bec26134abec8a80698a065acbb5ed873430fca (patch)
tree89ce273229c98117ba008ae4acbbe397d20dcdb4
parent4a6e00dfa310598af7d0c4a40ec110123bc08152 (diff)
downloadasteroids-cs165-7bec26134abec8a80698a065acbb5ed873430fca.tar.gz
asteroids-cs165-7bec26134abec8a80698a065acbb5ed873430fca.zip
Fixed a broken semicolon fml
-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 ) {}