Pathfinding.QuadtreeGraph.GetNodes C# (CSharp) Method

GetNodes() public method

public GetNodes ( GraphNodeDelegateCancelable del ) : void
del GraphNodeDelegateCancelable
return void
		public override void GetNodes (GraphNodeDelegateCancelable del) {
			if (root == null) return;
			root.GetNodes (del);
		}