mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
* 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; }
|
|
}
|
|
}
|