Files
tbd-station-14/Content.Shared/Interfaces/IConfigurableOverlay.cs
2020-11-24 00:14:46 +01:00

10 lines
200 B
C#

using Content.Shared.GameObjects.Components.Mobs;
namespace Content.Shared.Interfaces
{
public interface IConfigurableOverlay
{
void Configure(OverlayParameter parameter);
}
}