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