| 1463 | |
| 1464 | |
| 1465 | int cProtocol125::ParsePlayerLook(void) |
| 1466 | { |
| 1467 | HANDLE_PACKET_READ(ReadBEFloat, float, Rotation); |
| 1468 | HANDLE_PACKET_READ(ReadBEFloat, float, Pitch); |
| 1469 | HANDLE_PACKET_READ(ReadBool, bool, IsOnGround); |
| 1470 | m_Client->HandlePlayerLook(Rotation, Pitch, IsOnGround); |
| 1471 | return PARSE_OK; |
| 1472 | } |
| 1473 | |
| 1474 | |
| 1475 |
nothing calls this directly
no test coverage detected