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:
Point point;
Velocity velocity
Velocity velocity;
bool alive;
public:
FlyingObject() : point( Point() ) , velocity( Velocity() ) , alive( true ) {}