Remove wireless surgery (#2785)

* Remove wireless surgery

* Change surgery window title to Surgery

* Remove todo

* Check only tools with a window open
This commit is contained in:
DrSmugleaf
2020-12-20 04:31:39 +01:00
committed by GitHub
parent a3fdcd3a68
commit 0172613a7d
5 changed files with 136 additions and 35 deletions

View File

@@ -0,0 +1,14 @@
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Body.Surgery.Messages
{
public class SurgeryWindowOpenMessage : ComponentMessage
{
public SurgeryWindowOpenMessage(SurgeryToolComponent tool)
{
Tool = tool;
}
public SurgeryToolComponent Tool { get; }
}
}