string Map { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Map property of the ReconnectMsg struct represents the name of the map to which clients should reconnect. This property is part of the message sent to clients when the server is changing maps, allowing clients to prepare for the transition by preloading the necessary resources.

Usage

Use the Map property to specify or retrieve the name of the map involved in a server-initiated reconnection process. This property is typically used in conjunction with the Game property to provide clients with the necessary information to follow the server to a new game or map.

Example

// Example of using the ReconnectMsg struct
ReconnectMsg reconnectMessage = new ReconnectMsg();
reconnectMessage.Map = "new_map_name";
reconnectMessage.Game = "new_game_name";

// Send the reconnect message to clients
SendReconnectMessageToClients(reconnectMessage);

// Function to send the reconnect message
void SendReconnectMessageToClients(ReconnectMsg message)
{
    // Implementation to send the message to all connected clients
}