2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Server.Body.Surgery.Components;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-12-20 04:31:39 +01:00
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Server.Body.Surgery.Messages
|
2020-12-20 04:31:39 +01:00
|
|
|
|
{
|
2021-10-27 18:10:40 +02:00
|
|
|
|
#pragma warning disable 618
|
2020-12-20 04:31:39 +01:00
|
|
|
|
public class SurgeryWindowOpenMessage : ComponentMessage
|
2021-10-27 18:10:40 +02:00
|
|
|
|
#pragma warning restore 618
|
2020-12-20 04:31:39 +01:00
|
|
|
|
{
|
|
|
|
|
|
public SurgeryWindowOpenMessage(SurgeryToolComponent tool)
|
|
|
|
|
|
{
|
|
|
|
|
|
Tool = tool;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public SurgeryToolComponent Tool { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|