Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -10,7 +10,7 @@ namespace Content.Server.NodeContainer.Nodes
|
||||
/// A <see cref="Node"/> that can reach other <see cref="AdjacentNode"/>s that are directly adjacent to it.
|
||||
/// </summary>
|
||||
[DataDefinition]
|
||||
public class AdjacentNode : Node
|
||||
public sealed class AdjacentNode : Node
|
||||
{
|
||||
public override IEnumerable<Node> GetReachableNodes(TransformComponent xform,
|
||||
EntityQuery<NodeContainerComponent> nodeQuery,
|
||||
|
||||
@@ -19,6 +19,7 @@ namespace Content.Server.NodeContainer.Nodes
|
||||
/// correctly correspond.
|
||||
/// </summary>
|
||||
[DataDefinition]
|
||||
[Virtual]
|
||||
public class PipeNode : Node, IGasMixtureHolder, IRotatableNode
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.Serialization.Manager.Attributes;
|
||||
namespace Content.Server.NodeContainer.Nodes
|
||||
{
|
||||
[DataDefinition]
|
||||
public class PortPipeNode : PipeNode
|
||||
public sealed class PortPipeNode : PipeNode
|
||||
{
|
||||
public override IEnumerable<Node> GetReachableNodes(TransformComponent xform,
|
||||
EntityQuery<NodeContainerComponent> nodeQuery,
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.Serialization.Manager.Attributes;
|
||||
namespace Content.Server.NodeContainer.Nodes
|
||||
{
|
||||
[DataDefinition]
|
||||
public class PortablePipeNode : PipeNode
|
||||
public sealed class PortablePipeNode : PipeNode
|
||||
{
|
||||
public override IEnumerable<Node> GetReachableNodes(TransformComponent xform,
|
||||
EntityQuery<NodeContainerComponent> nodeQuery,
|
||||
|
||||
Reference in New Issue
Block a user