10 lines
212 B
C#
10 lines
212 B
C#
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Power.Components;
|
|||
|
|
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public sealed class ApcPowerReceiverComponentState : ComponentState
|
|||
|
|
{
|
|||
|
|
public bool Powered;
|
|||
|
|
}
|