* Storage fixes - Add size event. - Fix reclaim not running always. * Block the toggles * Standardise and popup explaining * Disable item toggles in bags * Fix verb popping up even if we can't activate * Conflicts * Validate * Stop drags if source closes * Really fixes * Real fix * Revert this
11 lines
238 B
C#
11 lines
238 B
C#
namespace Content.Shared.Item;
|
|
|
|
/// <summary>
|
|
/// Raised directed on an entity when its item size / shape changes.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public struct ItemSizeChangedEvent(EntityUid Entity)
|
|
{
|
|
public EntityUid Entity = Entity;
|
|
}
|