| 10 | #include "../Maths/General_Maths.h" |
| 11 | |
| 12 | Player::Player(Camera& camera) |
| 13 | : box ({0.5, 1.5, 0.5}) |
| 14 | , m_p_camera (&camera) |
| 15 | , m_flyModeToggle {sf::Keyboard::F, sf::seconds(0.3), m_isFlying} |
| 16 | , m_mouseLock {sf::Keyboard::L, sf::seconds(0.5)} |
| 17 | { } |
| 18 | |
| 19 | void Player::addForce(const Vector3& force) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected