2019-01-23 00:04:03 +01:00
|
|
|
/*
|
|
|
|
* =====================================================================================
|
|
|
|
*
|
|
|
|
* Filename: ServerPlayer.cpp
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Created: 22/01/2019 23:11:46
|
|
|
|
*
|
|
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
|
|
*
|
|
|
|
* =====================================================================================
|
|
|
|
*/
|
|
|
|
#include "ServerPlayer.hpp"
|
|
|
|
|
2020-01-19 18:22:50 +09:00
|
|
|
ServerPlayer::ServerPlayer(Client &client) : m_client(client) {
|
|
|
|
m_clientID = client.id;
|
|
|
|
}
|
|
|
|
|