mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* Updated r5net. Checking for version number now. * Added SQVM_Warning hook. * Adjusted IsFlagSet, will only mask off DEV_FLAGS in Release compile now. * Empty hostname cvars.
15 lines
205 B
C++
15 lines
205 B
C++
#pragma once
|
|
|
|
struct ServerListing
|
|
{
|
|
std::string name;
|
|
std::string map;
|
|
std::string ip;
|
|
std::string port;
|
|
std::string gamemode;
|
|
std::string password;
|
|
std::string checksum;
|
|
std::string version;
|
|
};
|
|
|