6
StarHorizon_Public/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs
2026-01-13 18:31:02 +02:00

11 lines
339 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Power.Generator;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class ActiveGeneratorRevvingComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadOnly), AutoNetworkedField]
public TimeSpan CurrentTime = TimeSpan.Zero;
}