diff --git a/Content.Client/GameObjects/Components/Mobs/SpeciesUI.cs b/Content.Client/GameObjects/Components/Mobs/SpeciesUI.cs index a8f498a168..2bf34586b2 100644 --- a/Content.Client/GameObjects/Components/Mobs/SpeciesUI.cs +++ b/Content.Client/GameObjects/Components/Mobs/SpeciesUI.cs @@ -16,6 +16,7 @@ using SS14.Shared.IoC; using SS14.Shared.Log; using SS14.Shared.Utility; using System.Collections.Generic; +using SS14.Client.Graphics.Overlays; namespace Content.Client.GameObjects { @@ -54,7 +55,7 @@ namespace Content.Client.GameObjects /// /// Holds the screen effects that can be applied mapped ot their relevant overlay /// - private Dictionary EffectsDictionary; + private Dictionary EffectsDictionary; public override void OnRemove() { @@ -70,7 +71,7 @@ namespace Content.Client.GameObjects IoCManager.InjectDependencies(this); _window = new SpeciesWindow(); - EffectsDictionary = new Dictionary() + EffectsDictionary = new Dictionary() { { ScreenEffects.CircleMask, new CircleMaskOverlay() }, { ScreenEffects.GradientCircleMask, new GradientCircleMask() }