Description
The Game
property of the ReconnectMsg
struct represents the name of the game to which clients should reconnect. This property is part of the message sent to clients when the server is changing games or maps, allowing clients to follow the server to the new game or map.
Usage
Use the Game
property to specify the game name when constructing a ReconnectMsg
instance. This information helps clients prepare for the transition by potentially preloading the necessary game resources.
Example
// Example of using the ReconnectMsg struct
var reconnectMessage = new ReconnectMsg
{
Game = "NewGameName",
Map = "NewMapName"
};
// Send this message to clients to instruct them to reconnect
SendReconnectMessageToClients(reconnectMessage);