r5sdk/r5dev/include/serverlisting.h
2021-07-25 15:26:18 +03:00

23 lines
358 B
C++

#pragma once
class ServerListing
{
public:
ServerListing() = default;
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;
std::string password;
};