aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/masterserver.h
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-10-19 02:18:24 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-10-19 02:18:24 +0100
commited7e4fed4ddedaf9d4c181052ca552a0914d57bb (patch)
tree0d451e40d82b0513c4f2acd42ea750638b1d4c88 /NorthstarDedicatedTest/masterserver.h
parent9b8a6d155a7a2cf1bfb4e8d98980bfb0b6e94d92 (diff)
downloadNorthstarLauncher-ed7e4fed4ddedaf9d4c181052ca552a0914d57bb.tar.gz
NorthstarLauncher-ed7e4fed4ddedaf9d4c181052ca552a0914d57bb.zip
add masterserver mod list support and fix some squirrel issues
Diffstat (limited to 'NorthstarDedicatedTest/masterserver.h')
-rw-r--r--NorthstarDedicatedTest/masterserver.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/NorthstarDedicatedTest/masterserver.h b/NorthstarDedicatedTest/masterserver.h
index 67f9a96f..a2a6d1f2 100644
--- a/NorthstarDedicatedTest/masterserver.h
+++ b/NorthstarDedicatedTest/masterserver.h
@@ -2,11 +2,11 @@
#include "convar.h"
#include <WinSock2.h>
-struct RemoteServerModInfo
+struct RemoteModInfo
{
public:
- std::string modName;
- std::string modServer;
+ std::string Name;
+ std::string Version;
};
class RemoteServerInfo
@@ -19,7 +19,7 @@ public:
std::string description;
char map[32];
char playlist[16];
- std::vector<RemoteServerModInfo> requiredMods;
+ std::vector<RemoteModInfo> requiredMods;
int playerCount;
int maxPlayers;