Fix bad reflection usage from OverlayEffectsComponent.

This commit is contained in:
Pieter-Jan Briers
2020-11-24 00:14:46 +01:00
parent fcb5787d33
commit 6395345925
4 changed files with 19 additions and 26 deletions

View File

@@ -1,7 +0,0 @@
namespace Content.Shared.Interfaces
{
public interface IConfigurable<in T>
{
public void Configure(T parameters);
}
}

View File

@@ -0,0 +1,9 @@
using Content.Shared.GameObjects.Components.Mobs;
namespace Content.Shared.Interfaces
{
public interface IConfigurableOverlay
{
void Configure(OverlayParameter parameter);
}
}