mirror of https://github.com/SourMesen/Mesen2
23 lines
367 B
C++
23 lines
367 B
C++
#pragma once
|
|
|
|
#include "pch.h"
|
|
|
|
class ClientConnectionData
|
|
{
|
|
public:
|
|
string Host;
|
|
uint16_t Port = 0;
|
|
string Password;
|
|
bool Spectator = false;
|
|
|
|
ClientConnectionData() {}
|
|
|
|
ClientConnectionData(string host, uint16_t port, string password, bool spectator) :
|
|
Host(host), Port(port), Password(password), Spectator(spectator)
|
|
{
|
|
}
|
|
|
|
~ClientConnectionData()
|
|
{
|
|
}
|
|
}; |