Overhaul player disconnect notifications.

This commit is contained in:
Paul Chote
2021-09-04 15:09:30 +01:00
committed by abcdefg30
parent b8e343bee9
commit 54c08748e0
12 changed files with 99 additions and 60 deletions

View File

@@ -605,4 +605,10 @@ namespace OpenRA.Traits
{
IEnumerable<VariableObserver> GetVariableObservers();
}
[RequireExplicitImplementation]
public interface INotifyPlayerDisconnected
{
void PlayerDisconnected(Actor self, Player p);
}
}