* Predicted gas pumps I wanted to try out atmos and first thing I found. * a * Atmos device prediction - Canisters - Tanks - Internals AirMixes aren't predicted so nothing on that front but all the UIs should be a lot closer. * Remove details range * Gas tank prediction * Even more sweeping changes * Alerts * rehg * Popup fix * Fix merge conflicts * Fix * Review
18 lines
530 B
C#
18 lines
530 B
C#
using Content.Server.DeviceNetwork.Systems;
|
|
using Content.Server.NodeContainer.Nodes;
|
|
using Content.Shared.NodeContainer;
|
|
|
|
namespace Content.Server.DeviceNetwork.Components
|
|
{
|
|
[RegisterComponent]
|
|
[Access(typeof(ApcNetworkSystem))]
|
|
[ComponentProtoName("ApcNetworkConnection")]
|
|
public sealed partial class ApcNetworkComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The node Group the ApcNetworkConnection is connected to
|
|
/// </summary>
|
|
[ViewVariables] public Node? ConnectedNode;
|
|
}
|
|
}
|