MeshNode.GetConnections C# (CSharp) 메소드

GetConnections() 공개 메소드

public GetConnections ( GraphNodeDelegate del ) : void
del GraphNodeDelegate
리턴 void
		public override void GetConnections (GraphNodeDelegate del) {
			if (connections == null) return;
			for (int i=0;i<connections.Length;i++) del (connections[i]);
		}