Delete Room.cs
This commit is contained in:
parent
8d9e62a05a
commit
742e43f35d
1 changed files with 0 additions and 28 deletions
28
Room.cs
28
Room.cs
|
|
@ -1,28 +0,0 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
|
||||
namespace LightReflectiveMirror
|
||||
{
|
||||
[JsonObject(MemberSerialization.OptOut)]
|
||||
public class Room
|
||||
{
|
||||
public int serverId;
|
||||
public int hostId;
|
||||
public string serverName;
|
||||
public string serverData;
|
||||
public bool isPublic;
|
||||
public int maxPlayers;
|
||||
public List<int> clients;
|
||||
[JsonIgnore]
|
||||
public bool supportsDirectConnect = false;
|
||||
[JsonIgnore]
|
||||
public IPEndPoint hostIP;
|
||||
[JsonIgnore]
|
||||
public string hostLocalIP;
|
||||
[JsonIgnore]
|
||||
public bool useNATPunch = false;
|
||||
[JsonIgnore]
|
||||
public int port;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue