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