namespace Content.Server.Silicon.Death;
///
/// Marks a Silicon as becoming incapacitated when they run out of battery charge.
///
///
/// Uses the Silicon System's charge states to do so, so make sure they're a battery powered Silicon.
///
[RegisterComponent]
public sealed partial class SiliconDownOnDeadComponent : Component
{
///
/// Is this Silicon currently dead?
///
[ViewVariables(VVAccess.ReadOnly)]
public bool Dead;
}