コード例 #1
0
ファイル: Shield.cs プロジェクト: tls5200/Nebula-Wars
 //if this Item is dropped, destroy the Barrier if it exists
 protected override void DropItem()
 {
     if (shield != null)
     {
         shield.DestroyThis();
         shield = null;
     }
 }