6
StarHorizon_Public/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs
2025-11-05 11:11:22 +03: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;
}