Files
tbd-station-14/Content.Server/StationRecords/Components/StationRecordsComponent.cs
Flipp Syder 3d36a6e1f6 Station records (#8720)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2022-08-09 15:10:01 +10:00

12 lines
328 B
C#

namespace Content.Server.StationRecords;
[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 StationRecordSet Records = new();
}