mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
19 lines
305 B
C++
19 lines
305 B
C++
#pragma once
|
|
|
|
class ServerListing
|
|
{
|
|
public:
|
|
ServerListing(std::string name, std::string map, std::string ip, std::string port) : name(name), map(map), ip(ip), port(port)
|
|
{
|
|
// for future constructor use.
|
|
}
|
|
|
|
void Select();
|
|
|
|
std::string name;
|
|
std::string map;
|
|
std::string ip;
|
|
std::string port;
|
|
};
|
|
|