Server.Gumps.GoGump.DisplayTo C# (CSharp) Méthode

DisplayTo() public static méthode

public static DisplayTo ( Mobile from ) : void
from Mobile
Résultat void
		public static void DisplayTo( Mobile from )
		{
			LocationTree tree = Felucca;

			ParentNode branch = null;
			tree.LastBranch.TryGetValue( from, out branch );

			if ( branch == null )
				branch = tree.Root;

			if ( branch != null )
				from.SendGump( new GoGump( 0, from, tree, branch ) );
		}