From d564d3bc39c37889f360dd756a9ab54fe6bd05dd Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 21 Jan 2020 02:07:25 +0100 Subject: [PATCH] Fix a compiler warning. --- Content.IntegrationTests/DummyGameTicker.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/DummyGameTicker.cs b/Content.IntegrationTests/DummyGameTicker.cs index ae1ddc2272..f3ffbe05d3 100644 --- a/Content.IntegrationTests/DummyGameTicker.cs +++ b/Content.IntegrationTests/DummyGameTicker.cs @@ -11,7 +11,12 @@ namespace Content.IntegrationTests public class DummyGameTicker : SharedGameTicker, IGameTicker { public GameRunLevel RunLevel { get; } = GameRunLevel.InRound; - public event Action OnRunLevelChanged; + + public event Action OnRunLevelChanged + { + add { } + remove { } + } public void Initialize() {