Files
tbd-station-14/Content.Server/StationRecords/Components/StationRecordsComponent.cs
Flipp Syder 5e07e8f8a5 Adds AddRecord/AddRecordEntry to StationRecordsSystem (#11732)
* adds an API to add station records from StationRecordsSystem

* removes a lingering comment

* adds a comment to AddRecord

* Update Content.Server/StationRecords/Systems/StationRecordsSystem.cs

Co-authored-by: wrexbe <81056464+wrexbe@users.noreply.github.com>

Co-authored-by: wrexbe <81056464+wrexbe@users.noreply.github.com>
2022-10-07 22:59:33 -07:00

12 lines
372 B
C#

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();
}