mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
23 lines
No EOL
367 B
C++
23 lines
No EOL
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()
|
|
{
|
|
}
|
|
}; |