mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
15 lines
294 B
C++
15 lines
294 B
C++
#pragma once
|
|
|
|
struct ServerListing
|
|
{
|
|
std::string svServerName;
|
|
std::string svMapName = "mp_lobby";
|
|
std::string svIpAddress;
|
|
std::string svPort;
|
|
std::string svPlaylist = "dev_default";
|
|
bool bHidden{};
|
|
std::string svRemoteChecksum;
|
|
std::string svVersion;
|
|
std::string svEncryptionKey;
|
|
};
|