| 268 | f32 CPhysicsShellHolder::GetMass() { return m_pPhysicsShell ? m_pPhysicsShell->getMass() : 0; } |
| 269 | |
| 270 | u16 CPhysicsShellHolder::PHGetSyncItemsNumber() |
| 271 | { |
| 272 | if (m_pPhysicsShell) |
| 273 | return m_pPhysicsShell->get_ElementsNumber(); |
| 274 | else |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | CPHSynchronize* CPhysicsShellHolder::PHGetSyncItem(u16 item) |
| 279 | { |
nothing calls this directly
no test coverage detected