10 lines
302 B
C#
10 lines
302 B
C#
namespace Content.Shared.Construction
|
|
{
|
|
[ImplicitDataDefinitionForInheritors]
|
|
public partial interface IGraphAction
|
|
{
|
|
// TODO pass in node/edge & graph ID for better error logs.
|
|
void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager);
|
|
}
|
|
}
|