6
StarHorizon_Public/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs
2026-01-24 12:49:55 +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;
}