mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 11:57:09 +00:00
23 lines
340 B
C++
23 lines
340 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class ClientConnectionData
|
|
{
|
|
public:
|
|
string Host;
|
|
uint16_t Port;
|
|
|
|
string PlayerName;
|
|
|
|
bool Spectator;
|
|
|
|
ClientConnectionData(string host, uint16_t port, string playerName, bool spectator) :
|
|
Host(host), Port(port), PlayerName(playerName), Spectator(spectator)
|
|
{
|
|
}
|
|
|
|
~ClientConnectionData()
|
|
{
|
|
}
|
|
}; |