コード例 #1
0
 public override void Accept(ColVisitor other)
 {
     //Debug.WriteLine("ShieldBrick Accepts");
     other.VisitShieldBrick(this);
 }
コード例 #2
0
ファイル: ShieldBrick.cs プロジェクト: Carsonq/SpaceInvaders
 public override void Accept(ColVisitor other)
 {
     // Important: at this point we have an Alien
     // Call the appropriate collision reaction
     other.VisitShieldBrick(this);
 }
コード例 #3
0
 public override void Accept(ColVisitor other)
 {
     other.VisitShieldBrick(this);
 }