7 lines
212 B
C#
7 lines
212 B
C#
|
|
using Content.Shared.Hands.Components;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Storage.Events;
|
|||
|
|
|
|||
|
|
[ByRefEvent]
|
|||
|
|
public record struct StorageInsertFailedEvent(Entity<StorageComponent?> Storage, Entity<HandsComponent?> Player);
|