Provides notification when an Avatar, Object or Attachment is DeRezzed or moves out of the avatars view for the ObjectManager.KillObjects event
Inheritance: System.EventArgs
 ///<summary>Raises the KillObjects Event</summary>
 /// <param name="e">A KillObjectsEventArgs object containing
 /// the data sent from the simulator</param>
 protected virtual void OnKillObjects(KillObjectsEventArgs e)
 {
     EventHandler<KillObjectsEventArgs> handler = m_KillObjects;
     if (handler != null)
         handler(this, e);
 }