Server.Commands.Add.InternalAvg_OnCommand C# (CSharp) Méthode

InternalAvg_OnCommand() private static méthode

private static InternalAvg_OnCommand ( CommandEventArgs e, bool outline ) : void
e CommandEventArgs
outline bool
Résultat void
		private static void InternalAvg_OnCommand( CommandEventArgs e, bool outline )
		{
			if ( e.Length >= 1 )
				BoundingBoxPicker.Begin( e.Mobile, new BoundingBoxCallback( TileBox_Callback ), new TileState( TileZType.MapAverage, 0, e.Arguments, outline ) );
			else
				e.Mobile.SendMessage( "Format: {0}Avg <type> [params] [set {{<propertyName> <value> ...}}]", outline ? "Outline" : "Tile" );
		}