Contains the media command for a parcel the agent is currently on
Inheritance: System.EventArgs
Beispiel #1
0
 /// <summary>Raises the ParcelMediaCommand event</summary>
 /// <param name="e">A ParcelMediaCommandEventArgs object containing the
 /// data returned from the simulator</param>
 protected virtual void OnParcelMediaCommand(ParcelMediaCommandEventArgs e)
 {
     EventHandler<ParcelMediaCommandEventArgs> handler = m_ParcelMediaCommand;
     if (handler != null)
         handler(this, e);
 }