2022-12-25 16:22:23 -05:00
|
|
|
namespace Content.Server.Research.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial 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
|
|
|
}
|