Example #1
0
File: Ship.cs Project: algor1/wing
        private void OnDestroyCall(int ship_id)
        {
            DestroyEventArgs args = new DestroyEventArgs();

            OnDestroy(args);
        }
Example #2
0
File: Ship.cs Project: algor1/wing
 protected virtual void OnDestroy(DestroyEventArgs e)
 {
     EventHandler <DestroyEventArgs> handler = ShipDestroyed;
 }