OpenMetaverse.ObjectManager.OnKillObjects C# (CSharp) Method

OnKillObjects() protected method

Raises the KillObjects Event
protected OnKillObjects ( KillObjectsEventArgs e ) : void
e KillObjectsEventArgs A KillObjectsEventArgs object containing /// the data sent from the simulator
return void
        protected virtual void OnKillObjects(KillObjectsEventArgs e)
        {
            EventHandler<KillObjectsEventArgs> handler = m_KillObjects;
            if (handler != null)
                handler(this, e);
        }