Files
tbd-station-14/Content.Server/Interfaces/GameObjects/IRefreshParts.cs
2021-01-23 20:00:29 +01:00

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);
}
}