Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/EnterRoomParams.cs
2026-02-21 16:45:37 +08:00

21 lines
317 B
C#

using ExitGames.Client.Photon;
internal class EnterRoomParams
{
public string RoomName;
public RoomOptions RoomOptions;
public TypedLobby Lobby;
public Hashtable PlayerProperties;
public bool OnGameServer = true;
public bool CreateIfNotExists;
public bool RejoinOnly;
public string[] ExpectedUsers;
}