}
}
if (p instanceof ImmovableBlock) {// for instance of immovableBlock
ImmovableBlock ib = (ImmovableBlock) p;
ImmovableBlockRectangle tRect = ib.getRectangle();
if(tRect.intersects(rect)) {
return false;
}
}
if (p instanceof SpikePit) {// for instance of SpikePit
SpikePit sp = (SpikePit) p;
SpikePitRectangle tRect = sp.getRectangle();
if(tRect.intersects(rect)) {
return false;
}
}
if (p instanceof FireRing) {// for instance of fireRing
FireRing fr = (FireRing) p;
FireRingRectangle tRect = fr.getRectangle();
if(tRect.intersects(rect)) {
return false;
}
}
if (p instanceof TNT) {// for instance of TNT
TNT tnt = (TNT) p;
TNTRectangle tRect = tnt.getRectangle();
if(tRect.intersects(rect)) {
return false;
}
}