#include #include "Player.h" Player::Player() { health = 100; } void Player::jump() { if (!yVel) { incYVel(-JUMP_STRENGTH); } } void Player::kill() { std::cout << "Player::kill(): Killing player, resetting to start position.\n"; health = 0; // Do resetting stuff }