2020-10-08 17:41:23 +02:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using System.Threading.Tasks;
|
2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
2020-10-08 17:41:23 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Construction
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IGraphAction : IExposeData
|
|
|
|
|
|
{
|
|
|
|
|
|
Task PerformAction(IEntity entity, IEntity? user);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|