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