Content update for NetEntities (#18935)
This commit is contained in:
@@ -32,12 +32,12 @@ public sealed class GeneralStationRecordConsoleState : BoundUserInterfaceState
|
||||
/// <summary>
|
||||
/// Current selected key.
|
||||
/// </summary>
|
||||
public StationRecordKey? SelectedKey { get; }
|
||||
public (NetEntity, uint)? SelectedKey { get; }
|
||||
public GeneralStationRecord? Record { get; }
|
||||
public Dictionary<StationRecordKey, string>? RecordListing { get; }
|
||||
public Dictionary<(NetEntity, uint), string>? RecordListing { get; }
|
||||
public GeneralStationRecordsFilter? Filter { get; }
|
||||
public GeneralStationRecordConsoleState(StationRecordKey? key, GeneralStationRecord? record,
|
||||
Dictionary<StationRecordKey, string>? recordListing, GeneralStationRecordsFilter? newFilter)
|
||||
public GeneralStationRecordConsoleState((NetEntity, uint)? key, GeneralStationRecord? record,
|
||||
Dictionary<(NetEntity, uint), string>? recordListing, GeneralStationRecordsFilter? newFilter)
|
||||
{
|
||||
SelectedKey = key;
|
||||
Record = record;
|
||||
@@ -52,9 +52,9 @@ public sealed class GeneralStationRecordConsoleState : BoundUserInterfaceState
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class SelectGeneralStationRecord : BoundUserInterfaceMessage
|
||||
{
|
||||
public StationRecordKey? SelectedKey { get; }
|
||||
public (NetEntity, uint)? SelectedKey { get; }
|
||||
|
||||
public SelectGeneralStationRecord(StationRecordKey? selectedKey)
|
||||
public SelectGeneralStationRecord((NetEntity, uint)? selectedKey)
|
||||
{
|
||||
SelectedKey = selectedKey;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user