NotekeeperCartridgeComponent.cs 296 B

1234567891011
  1. namespace Content.Server.CartridgeLoader.Cartridges;
  2. [RegisterComponent]
  3. public sealed partial class NotekeeperCartridgeComponent : Component
  4. {
  5. /// <summary>
  6. /// The list of notes that got written down
  7. /// </summary>
  8. [DataField("notes")]
  9. public List<string> Notes = new();
  10. }