19 lines
417 B
C#
19 lines
417 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Inventory.Events;
|
|||
|
|
|
|||
|
|
[NetSerializable, Serializable]
|
|||
|
|
public class OpenSlotStorageNetworkMessage : EntityEventArgs
|
|||
|
|
{
|
|||
|
|
public readonly EntityUid Uid;
|
|||
|
|
public readonly string Slot;
|
|||
|
|
|
|||
|
|
public OpenSlotStorageNetworkMessage(EntityUid uid, string slot)
|
|||
|
|
{
|
|||
|
|
Uid = uid;
|
|||
|
|
Slot = slot;
|
|||
|
|
}
|
|||
|
|
}
|