mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-15 03:31:44 +01:00
17 lines
443 B
C#
17 lines
443 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Inventory.Events;
|
|
|
|
[NetSerializable, Serializable]
|
|
public sealed class UseSlotNetworkMessage : EntityEventArgs
|
|
{
|
|
// The slot-owner is implicitly the client that is sending this message.
|
|
// Otherwise clients could start forcefully undressing other clients.
|
|
public readonly string Slot;
|
|
|
|
public UseSlotNetworkMessage(string slot)
|
|
{
|
|
Slot = slot;
|
|
}
|
|
}
|