* Remove wireless surgery * Change surgery window title to Surgery * Remove todo * Check only tools with a window open
13 lines
296 B
C#
13 lines
296 B
C#
namespace Content.Server.GameObjects.Components.Body.Surgery.Messages
|
|
{
|
|
public class SurgeryWindowCloseMessage
|
|
{
|
|
public SurgeryWindowCloseMessage(SurgeryToolComponent tool)
|
|
{
|
|
Tool = tool;
|
|
}
|
|
|
|
public SurgeryToolComponent Tool { get; }
|
|
}
|
|
}
|