17 lines
292 B
C#
17 lines
292 B
C#
using ExitGames.Client.Photon;
|
|
|
|
internal class OpJoinRandomRoomParams
|
|
{
|
|
public Hashtable ExpectedCustomRoomProperties;
|
|
|
|
public byte ExpectedMaxPlayers;
|
|
|
|
public MatchmakingMode MatchingType;
|
|
|
|
public TypedLobby TypedLobby;
|
|
|
|
public string SqlLobbyFilter;
|
|
|
|
public string[] ExpectedUsers;
|
|
}
|