| 1422 | } |
| 1423 | |
| 1424 | void CPHShell::add_Joint(CPhysicsJoint* J) |
| 1425 | { |
| 1426 | if (!J) |
| 1427 | return; |
| 1428 | joints.push_back(static_cast<CPHJoint*>(J)); |
| 1429 | joints.back()->SetShell(this); |
| 1430 | } |
| 1431 | |
| 1432 | CODEGeom* CPHShell::get_GeomByID(u16 bone_id) |
| 1433 | { |
no test coverage detected