c0e249e993
This reverts commitdaf3b57e89
, reversing changes made to7a6e0b7d77
.
24 lines
No EOL
421 B
C++
24 lines
No EOL
421 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class ClientConnectionData
|
|
{
|
|
public:
|
|
string Host;
|
|
uint16_t Port;
|
|
string Password;
|
|
string PlayerName;
|
|
bool Spectator;
|
|
|
|
ClientConnectionData() {}
|
|
|
|
ClientConnectionData(string host, uint16_t port, string password, string playerName, bool spectator) :
|
|
Host(host), Port(port), Password(password), PlayerName(playerName), Spectator(spectator)
|
|
{
|
|
}
|
|
|
|
~ClientConnectionData()
|
|
{
|
|
}
|
|
}; |