Fix a compiler warning.

This commit is contained in:
Pieter-Jan Briers 2020-01-21 02:07:25 +01:00
parent 6537aead64
commit d564d3bc39
No known key found for this signature in database
GPG Key ID: 132054DF433AE592
1 changed files with 6 additions and 1 deletions

View File

@ -11,7 +11,12 @@ namespace Content.IntegrationTests
public class DummyGameTicker : SharedGameTicker, IGameTicker
{
public GameRunLevel RunLevel { get; } = GameRunLevel.InRound;
public event Action<GameRunLevelChangedEventArgs> OnRunLevelChanged;
public event Action<GameRunLevelChangedEventArgs> OnRunLevelChanged
{
add { }
remove { }
}
public void Initialize()
{