Files
tbd-station-14/Content.Shared/Construction/IGraphAction.cs
2021-07-16 17:37:09 -07:00

11 lines
214 B
C#

using System.Threading.Tasks;
using Robust.Shared.GameObjects;
namespace Content.Shared.Construction
{
public interface IGraphAction
{
Task PerformAction(IEntity entity, IEntity? user);
}
}