mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:32:07 +01:00
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);
|
|
}
|
|
}
|