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