2023-02-28 11:03:55 -05:00
|
|
|
using Content.Server.StationRecords.Systems;
|
|
|
|
|
|
2022-08-08 22:10:01 -07:00
|
|
|
namespace Content.Server.StationRecords;
|
|
|
|
|
|
2022-10-07 22:59:33 -07:00
|
|
|
[Access(typeof(StationRecordsSystem))]
|
2022-08-08 22:10:01 -07:00
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class StationRecordsComponent : Component
|
2022-08-08 22:10:01 -07:00
|
|
|
{
|
|
|
|
|
// Every single record in this station, by key.
|
|
|
|
|
// Essentially a columnar database, but I really suck
|
|
|
|
|
// at implementing that so
|
2023-09-11 09:42:41 +10:00
|
|
|
[IncludeDataField]
|
|
|
|
|
public StationRecordSet Records = new();
|
2022-08-08 22:10:01 -07:00
|
|
|
}
|