Reset slot configuration when all players leave a dedicated server.

This commit is contained in:
Paul Chote
2016-12-08 20:56:13 +00:00
parent 7827d50e99
commit 1153cd2f7c
3 changed files with 20 additions and 4 deletions

View File

@@ -18,6 +18,7 @@ namespace OpenRA.Server
public interface IInterpretCommand { bool InterpretCommand(Server server, Connection conn, Session.Client client, string cmd); }
public interface INotifySyncLobbyInfo { void LobbyInfoSynced(Server server); }
public interface INotifyServerStart { void ServerStarted(Server server); }
public interface INotifyServerEmpty { void ServerEmpty(Server server); }
public interface INotifyServerShutdown { void ServerShutdown(Server server); }
public interface IStartGame { void GameStarted(Server server); }
public interface IClientJoined { void ClientJoined(Server server, Connection conn); }