RemotePlayer

This commit is contained in:
MarcEricMartel
2023-10-27 14:37:53 -04:00
parent 8970bc33a1
commit 61629b3c8e
6 changed files with 30 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
#include <cstring>
RemotePlayer::RemotePlayer() : Player(Vector3f(0, 0, 0), 0, 0), m_aminacc(0.0f), m_animstate(Anim::STILL), m_team_id(0), current(), previous() {
RemotePlayer::RemotePlayer(netprot::PlayerInfo pinfo) : Player(Vector3f(0, 0, 0), 0, 0), m_pinfo(pinfo), m_aminacc(0.0f), m_animstate(Anim::STILL), m_team_id(0), current(), previous() {
}