| 559 | } |
| 560 | |
| 561 | f32 GeographyObj::getAllBoundDepth() |
| 562 | { |
| 563 | f32 totalDepth = 0.0f; |
| 564 | ObjColBase **bound = mBounds; |
| 565 | for (u8 i = 0; i < mBoundsNum; i++, bound++) { |
| 566 | totalDepth += (*bound)->getBoundDepth(); |
| 567 | } |
| 568 | return totalDepth; |
| 569 | } |
| 570 | |
| 571 | void GeographyObj::getItemThrowDirPow(JGeometry::TVec3f *, f32 *, const ItemObj &) {} |
| 572 |
nothing calls this directly
no test coverage detected