namespace Content.Shared.PowerCell;
///
/// Raised directed on an entity when its active power cell has no more charge to supply.
///
[ByRefEvent]
public readonly record struct PowerCellSlotEmptyEvent;
///
/// Raised directed at an entity with a power cell slot when a power cell is ejected/inserted.
///
[ByRefEvent]
public record struct PowerCellChangedEvent(bool Ejected);