17 lines
394 B
C#
17 lines
394 B
C#
namespace Content.Shared.Construction;
|
|
|
|
public interface IGraphTransform
|
|
{
|
|
public void Transform(EntityUid oldUid, EntityUid newUid, EntityUid? userUid, GraphTransformArgs args);
|
|
}
|
|
|
|
public readonly struct GraphTransformArgs
|
|
{
|
|
public readonly IEntityManager EntityManager;
|
|
|
|
public GraphTransformArgs(IEntityManager entityManager)
|
|
{
|
|
EntityManager = entityManager;
|
|
}
|
|
}
|