2022-12-25 16:22:23 -05:00
|
|
|
namespace Content.Server.Research.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed class ResearchPointSourceComponent : Component
|
2019-09-03 22:51:19 +02:00
|
|
|
{
|
2022-12-25 16:22:23 -05:00
|
|
|
[DataField("pointspersecond"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public int PointsPerSecond;
|
2019-09-03 22:51:19 +02:00
|
|
|
|
2022-12-25 16:22:23 -05:00
|
|
|
[DataField("active"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public bool Active;
|
2019-09-03 22:51:19 +02:00
|
|
|
}
|