summaryrefslogtreecommitdiff
path: root/server/player.cpp
blob: 9530c10f98068fcf3985f11b8e477258f7fbdb36 (plain)
1
2
3
4
5
6
7
8
9
10
#include "player.h"

Player::Player(){}
Player::~Player(){}

Player::Player(std::string& ip, std::string& port, std::string& nick){
	this->ip = ip;
	this->port = port;
	this->nick = nick;
}