Works with just character
This commit is contained in:
@@ -10,26 +10,11 @@ namespace SeamlessClient.Messages
|
||||
[ProtoContract]
|
||||
public class OnlinePlayerData
|
||||
{
|
||||
[ProtoMember(10)] public List<OnlineClientServer> OnlineServers = new List<OnlineClientServer>();
|
||||
[ProtoMember(10)] public List<OnlinePlayer> OnlinePlayers = new List<OnlinePlayer>();
|
||||
|
||||
[ProtoMember(12)] public int currentServerID;
|
||||
}
|
||||
|
||||
[ProtoContract]
|
||||
public class OnlineClientServer
|
||||
{
|
||||
[ProtoMember(2)] public List<OnlinePlayer> Players = new List<OnlinePlayer>();
|
||||
|
||||
[ProtoMember(3)] public bool ServerRunning = false;
|
||||
|
||||
[ProtoMember(10)] public int ServerID;
|
||||
|
||||
[ProtoMember(11)] public string ServerName;
|
||||
|
||||
public OnlineClientServer()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
[ProtoContract]
|
||||
public class OnlinePlayer
|
||||
@@ -42,9 +27,6 @@ namespace SeamlessClient.Messages
|
||||
|
||||
[ProtoMember(4)] public int OnServer;
|
||||
|
||||
|
||||
public string ServerName;
|
||||
|
||||
public OnlinePlayer(string PlayerName, ulong SteamID, long IdentityID, int OnServer)
|
||||
{
|
||||
this.PlayerName = PlayerName;
|
||||
|
Reference in New Issue
Block a user