1
0

ResearchPointSourceComponent.cs 328 B

1234567891011
  1. namespace Content.Server.Research.Components;
  2. [RegisterComponent]
  3. public sealed partial class ResearchPointSourceComponent : Component
  4. {
  5. [DataField("pointspersecond"), ViewVariables(VVAccess.ReadWrite)]
  6. public int PointsPerSecond;
  7. [DataField("active"), ViewVariables(VVAccess.ReadWrite)]
  8. public bool Active;
  9. }