Files
tbd-station-14/Content.Server/Research/Components/ResearchPointSourceComponent.cs
Nemanja 4eee1ee9b2 clean up infinite researchsystem shitcode (#13136)
* clean up infinite researchsystem shitcode

* fml some more shit

* make syncing work logically

* naming naming naming
2022-12-25 15:22:23 -06:00

12 lines
320 B
C#

namespace Content.Server.Research.Components;
[RegisterComponent]
public sealed class ResearchPointSourceComponent : Component
{
[DataField("pointspersecond"), ViewVariables(VVAccess.ReadWrite)]
public int PointsPerSecond;
[DataField("active"), ViewVariables(VVAccess.ReadWrite)]
public bool Active;
}