Beispiel #1
0
 public bool CollidesWith(WallStub other)
 {
     return(false);
 }
Beispiel #2
0
 public bool CollidesWith(WallStub other)
 {
     return(other.CollidesWith(this));
 }
Beispiel #3
0
 public bool CollidesWith(WallStub other)
 {
     return(other.Point1 == this.Point1 && other.Point2 == this.Point2);
 }