Fixed a broken semicolon fml
This commit is contained in:
parent
4a6e00dfa3
commit
7bec26134a
@ -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 ) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user