MutableNetworkNodeConnection

data class MutableNetworkNodeConnection(val node: NetworkNode, val faces: MutableSet<BlockFace> = enumSet()) : NetworkNodeConnection

An implementation of NetworkNodeConnection with a mutable faces set.

Parameters

node

The NetworkNode that is connected.

faces

The BlockFaces with which the node is connected.

Constructors

Link copied to clipboard
constructor(node: NetworkNode, faces: MutableSet<BlockFace> = enumSet())

Properties

Link copied to clipboard
open override val faces: MutableSet<BlockFace>
Link copied to clipboard
open override val node: NetworkNode