11 lines
338 B
C#
11 lines
338 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;
|
||
|
|
}
|