Files
tbd-station-14/Content.Server/Research/Disk/ResearchDiskComponent.cs
Nemanja 077ebb06ae research disk debug stuff (#13063)
* research disk tweaks

* save a single blessed line of yaml
2022-12-19 21:36:08 -06:00

20 lines
568 B
C#

namespace Content.Server.Research.Disk
{
[RegisterComponent]
public sealed class ResearchDiskComponent : Component
{
[DataField("points"), ViewVariables(VVAccess.ReadWrite)]
public int Points = 1000;
/// <summary>
/// If true, the value of this disk will be set to the sum
/// of all the technologies in the game.
/// </summary>
/// <remarks>
/// This is for debug purposes only.
/// </remarks>
[DataField("unlockAllTech")]
public bool UnlockAllTech = false;
}
}