1
0

ResearchDiskComponent.cs 576 B

12345678910111213141516171819
  1. namespace Content.Server.Research.Disk
  2. {
  3. [RegisterComponent]
  4. public sealed partial class ResearchDiskComponent : Component
  5. {
  6. [DataField("points"), ViewVariables(VVAccess.ReadWrite)]
  7. public int Points = 1000;
  8. /// <summary>
  9. /// If true, the value of this disk will be set to the sum
  10. /// of all the technologies in the game.
  11. /// </summary>
  12. /// <remarks>
  13. /// This is for debug purposes only.
  14. /// </remarks>
  15. [DataField("unlockAllTech")]
  16. public bool UnlockAllTech = false;
  17. }
  18. }