mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
20 lines
295 B
C++
20 lines
295 B
C++
#pragma once
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class ServerListing
|
|
{
|
|
|
|
public:
|
|
|
|
std::string name;
|
|
std::string map;
|
|
std::string ip;
|
|
std::string version;
|
|
int expiry;
|
|
|
|
ServerListing(std::string name, std::string map, std::string ip, std::string version, int expiry);
|
|
bool Select();
|
|
};
|
|
|