Files
crystall-punk-14/Content.Server/Construction/Components/IRefreshParts.cs

12 lines
274 B
C#
Raw Normal View History

using System.Collections.Generic;
2021-01-23 22:45:23 +01:00
using Robust.Shared.Analyzers;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Construction.Components
{
2021-01-23 20:00:29 +01:00
[RequiresExplicitImplementation]
public interface IRefreshParts
{
void RefreshParts(IEnumerable<MachinePartComponent> parts);
}
}