MonoGdx.Scene2D.Group.Print C# (CSharp) Method

Print() private method

private Print ( string indent ) : void
indent string
return void
        private void Print(string indent)
        {
            foreach (Actor child in Children.Begin()) {
                Console.WriteLine(indent + child);
                if (child is Group)
                    (child as Group).Print(indent + "|  ");
            }
            Children.End();
        }

Same methods

Group::Print ( ) : void