Ejemplo n.º 1
0
 public abstract bool IntersectVisit(Shape other);
Ejemplo n.º 2
0
 public override bool IntersectVisit(Shape other)
 {
     return other.Intersect(this);
 }
Ejemplo n.º 3
0
 public ShapeObject(Shape collisionShape)
 {
     _collisionShape = collisionShape;
 }