示例#1
0
文件: Ship.cs 项目: algor1/wing
        private void OnDestroyCall(int ship_id)
        {
            DestroyEventArgs args = new DestroyEventArgs();

            OnDestroy(args);
        }
示例#2
0
文件: Ship.cs 项目: algor1/wing
 protected virtual void OnDestroy(DestroyEventArgs e)
 {
     EventHandler <DestroyEventArgs> handler = ShipDestroyed;
 }