mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
13 lines
354 B
C#
13 lines
354 B
C#
using Content.Shared.Examine;
|
|
|
|
namespace Content.Shared.Construction
|
|
{
|
|
[ImplicitDataDefinitionForInheritors]
|
|
public partial interface IGraphCondition
|
|
{
|
|
bool Condition(EntityUid uid, IEntityManager entityManager);
|
|
bool DoExamine(ExaminedEvent args);
|
|
IEnumerable<ConstructionGuideEntry> GenerateGuideEntry();
|
|
}
|
|
}
|