9 lines
208 B
C#
9 lines
208 B
C#
namespace Content.Server.Construction.Components
|
|
{
|
|
[RequiresExplicitImplementation]
|
|
public interface IRefreshParts
|
|
{
|
|
void RefreshParts(IEnumerable<MachinePartComponent> parts);
|
|
}
|
|
}
|