public override void Accept(CollisionVisitor other)
 {
     // Important: at this point we have an Alien
     // Call the appropriate collision reaction
     other.VisitWallRight(this);
 }
Esempio n. 2
0
 public override void Accept(CollisionVisitor other)
 {
     other.VisitWallRight(this);
 }