| 388 | } |
| 389 | |
| 390 | Player::Player() |
| 391 | { |
| 392 | cantSwim = 0; |
| 393 | swimming = false; |
| 394 | isSquished = false; |
| 395 | hit = 0; |
| 396 | score = 0; |
| 397 | holding = 0; |
| 398 | tryingToHold = false; |
| 399 | kicking = 0; |
| 400 | lookingUp = false; |
| 401 | crouching = false; |
| 402 | health = 3; |
| 403 | } |
| 404 | |
| 405 | Player::~Player() {} |
| 406 |
nothing calls this directly
no outgoing calls
no test coverage detected