mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
11 lines
214 B
C#
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);
|
|
}
|
|
}
|