StationRecordsComponent.cs 424 B

1234567891011121314
  1. using Content.Server.StationRecords.Systems;
  2. namespace Content.Server.StationRecords;
  3. [Access(typeof(StationRecordsSystem))]
  4. [RegisterComponent]
  5. public sealed partial class StationRecordsComponent : Component
  6. {
  7. // Every single record in this station, by key.
  8. // Essentially a columnar database, but I really suck
  9. // at implementing that so
  10. [IncludeDataField]
  11. public StationRecordSet Records = new();
  12. }