Add a time limit lobby option

This commit is contained in:
Oliver Brakmann
2018-12-22 03:26:07 +01:00
committed by abcdefg30
parent 1364581696
commit a63cc2d317
8 changed files with 205 additions and 2 deletions

View File

@@ -583,4 +583,10 @@ namespace OpenRA.Mods.Common.Traits
{
void MovementTypeChanged(Actor self, MovementType type);
}
[RequireExplicitImplementation]
public interface INotifyTimeLimit
{
void NotifyTimerExpired(Actor self);
}
}