mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
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);
|
|
}
|
|
}
|