| 313 | bool CCar::HasWeapon() { return (m_car_weapon != NULL); } |
| 314 | |
| 315 | Fvector CCar::CurrentVel() |
| 316 | { |
| 317 | Fvector lin_vel; |
| 318 | m_pPhysicsShell->get_LinearVel(lin_vel); |
| 319 | |
| 320 | return lin_vel; |
| 321 | } |
nothing calls this directly
no test coverage detected