Files
tbd-station-14/Content.Server/StationRecords/Components/StationRecordsComponent.cs
2023-09-11 09:42:41 +10:00

15 lines
424 B
C#

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