add Player::hover

This commit is contained in:
Josh Holtrop 2012-09-17 21:08:11 -04:00
parent 41b06a1de7
commit d5301b6d6c
2 changed files with 2 additions and 0 deletions

View File

@ -6,4 +6,5 @@ Player::Player()
x = 0.0; x = 0.0;
y = 0.0; y = 0.0;
direction = 0.0; direction = 0.0;
hover = 1.0;
} }

View File

@ -11,6 +11,7 @@ class Player
double x; double x;
double y; double y;
double direction; /* 0 = East, M_PI_2 = North, M_PI = West, ... */ double direction; /* 0 = East, M_PI_2 = North, M_PI = West, ... */
double hover;
Player(); Player();
}; };