Fixed a broken semicolon fml

This commit is contained in:
Simponic 2020-06-30 20:16:33 -06:00
parent 4a6e00dfa3
commit 7bec26134a

View File

@ -9,7 +9,7 @@ class FlyingObject
{ {
protected: protected:
Point point; Point point;
Velocity velocity Velocity velocity;
bool alive; bool alive;
public: public:
FlyingObject() : point( Point() ) , velocity( Velocity() ) , alive( true ) {} FlyingObject() : point( Point() ) , velocity( Velocity() ) , alive( true ) {}