UMD.HCIL.Piccolo.PNode.GetChild C# (CSharp) Method

GetChild() public method

Return the child node at the specified index.
public GetChild ( int index ) : PNode
index int The index of the desired child.
return PNode
		public virtual PNode GetChild(int index) {
			return children[index];
		}