* clean up a bunch of R&D code * don't store components * brug * speedrun some sloth review
13 lines
354 B
C#
13 lines
354 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;
|
|
}
|
|
}
|