mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03: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);
|
|
}
|
|
}
|