| 61 | } |
| 62 | |
| 63 | void GetOrigin( int clientID, vec3_t org ) |
| 64 | { |
| 65 | if ( clientID >=0 ) |
| 66 | { |
| 67 | centity_t *cent = &cg_entities[clientID]; |
| 68 | |
| 69 | if ( cent && cent->gent && cent->gent->client ) |
| 70 | { |
| 71 | VectorCopy( cent->gent->client->renderInfo.muzzlePoint, org ); |
| 72 | } |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | void GetDir( int clientID, vec3_t org ) |
| 77 | { |