Files
tbd-station-14/Content.Server/Construction/Components/IRefreshParts.cs
2021-06-09 22:19:39 +02:00

12 lines
274 B
C#

using System.Collections.Generic;
using Robust.Shared.Analyzers;
namespace Content.Server.Construction.Components
{
[RequiresExplicitImplementation]
public interface IRefreshParts
{
void RefreshParts(IEnumerable<MachinePartComponent> parts);
}
}