13 lines
331 B
C#
13 lines
331 B
C#
using System.Collections.Generic;
|
|
using Content.Server.GameObjects.Components.Construction;
|
|
using Robust.Shared.Analyzers;
|
|
|
|
namespace Content.Server.Interfaces.GameObjects
|
|
{
|
|
[RequiresExplicitImplementation]
|
|
public interface IRefreshParts
|
|
{
|
|
void RefreshParts(IEnumerable<MachinePartComponent> parts);
|
|
}
|
|
}
|