Fix a compiler warning.

This commit is contained in:
Pieter-Jan Briers
2020-01-21 02:07:25 +01:00
parent 6537aead64
commit d564d3bc39

View File

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