8 lines
141 B
C#
8 lines
141 B
C#
|
|
namespace Content.Shared.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IConfigurable<in T>
|
|||
|
|
{
|
|||
|
|
public void Configure(T parameters);
|
|||
|
|
}
|
|||
|
|
}
|