From a79bf0d1ebd7b076bcbe0c9dc328297fba883f6f Mon Sep 17 00:00:00 2001 From: Claudel-D-Roy <112507354+Claudel-D-Roy@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:31:04 -0500 Subject: [PATCH] :oncoming_bus: --- SQCSim2021/remoteplayer.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/SQCSim2021/remoteplayer.cpp b/SQCSim2021/remoteplayer.cpp index e9c1739..b6ba86c 100644 --- a/SQCSim2021/remoteplayer.cpp +++ b/SQCSim2021/remoteplayer.cpp @@ -35,6 +35,16 @@ void RemotePlayer::Feed(const netprot::Output out) { m_position = Vector3f(out.position); m_direction = Vector3f(out.direction); + + std::cout << "dead " << out.states.dead << std::endl; + std::cout << "hit " << out.states.hit << std::endl; + std::cout << "Jump " << out.states.jumping << std::endl; + std::cout << "JumpShot " << out.states.jumpshot << std::endl; + std::cout << "powerUp " << out.states.powerup << std::endl; + std::cout << "Running " << out.states.running << std::endl; + std::cout << "Shooting " << out.states.shooting << std::endl; + std::cout << "Still " << out.states.still << std::endl; + //current.position = out.position; //current.direction = out.direction; //current.states = out.states;