forked from space-syndicate/space-station-14
* cleanup * fix fixtures * prediction * fix test * review * fix svalinn visuals * fix chargers * fix portable recharger and its unlit visuals * fix borgs * oomba review * fix examination prediction
14 lines
420 B
C#
14 lines
420 B
C#
namespace Content.Shared.PowerCell;
|
|
|
|
/// <summary>
|
|
/// Raised directed on an entity when its active power cell has no more charge to supply.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct PowerCellSlotEmptyEvent;
|
|
|
|
/// <summary>
|
|
/// Raised directed at an entity with a power cell slot when a power cell is ejected/inserted.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public record struct PowerCellChangedEvent(bool Ejected);
|