ActiveGeneratorRevvingComponent.cs 339 B

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