Exemple #1
0
 public void Close(LobbyCloseReason reason)
 {
     // stop other things if necessary, doubt it will be
     LobbyClosed?.Invoke(this, new LobbyCloseEventArgs(reason));
 }
Exemple #2
0
 public LobbyCloseEventArgs(LobbyCloseReason value)
 {
     reason = value;
 }