Files
tbd-station-14/Content.Server/StationRecords/Components/StationRecordsComponent.cs
Nemanja 13d71f14e2 add support for per-id access on AccessReaderComponent (#13659)
* add support for per-id access on AccessReaderComponent

* comments!!!

* oh yeah we predicting baby

* foobar

* sloth review

* weh
2023-02-28 08:03:55 -08:00

14 lines
418 B
C#

using Content.Server.StationRecords.Systems;
namespace Content.Server.StationRecords;
[Access(typeof(StationRecordsSystem))]
[RegisterComponent]
public sealed class StationRecordsComponent : Component
{
// Every single record in this station, by key.
// Essentially a columnar database, but I really suck
// at implementing that so
[ViewVariables] public readonly StationRecordSet Records = new();
}