/* Checks cell-to-bounds collision: objects collide if caller's bounding box collides with callee's * cell */ public bool CheckCell2BoundsCollision(FieldCell other) { return other.CheckBounds2CellCollision(this); }
/* Checks cell-to-bounds collision: objects collide if caller's bounding box collides with callee's * cell */ public bool CheckCell2BoundsCollision(FieldCell other) { return(other.CheckBounds2CellCollision(this)); }