PickInstrument() public static method

public static PickInstrument ( Mobile from, InstrumentPickedCallback callback ) : void
from Mobile
callback InstrumentPickedCallback
return void
Exemplo n.º 1
0
 private static void BardTest_OnCommand(CommandEventArgs e)
 {
     try
     {
         BaseInstrument.PickInstrument(e.Mobile, new InstrumentPickedCallback(OnPickedInstrument));
     }
     catch (Exception ex)
     {
         Server.Commands.LogHelper.LogException(ex);
     }
 }