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