Predict identity (#40185)
* crossing the pond * share some station records * share some criminal records * single system * comments * minor touchups * I always forget this part * requested changes * revert predicted spawn * requested changes --------- Co-authored-by: iaada <iaada@users.noreply.github.com>
This commit is contained in:
12
Content.Shared/StationRecords/StationRecordsComponent.cs
Normal file
12
Content.Shared/StationRecords/StationRecordsComponent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Content.Shared.StationRecords;
|
||||
|
||||
[Access(typeof(SharedStationRecordsSystem))]
|
||||
[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();
|
||||
}
|
||||
Reference in New Issue
Block a user