| 1902 | |
| 1903 | |
| 1904 | void cProtocol172::HandlePacketUseEntity(cByteBuffer & a_ByteBuffer) |
| 1905 | { |
| 1906 | HANDLE_READ(a_ByteBuffer, ReadBEInt, int, EntityID); |
| 1907 | HANDLE_READ(a_ByteBuffer, ReadByte, Byte, MouseButton); |
| 1908 | m_Client->HandleUseEntity(EntityID, (MouseButton == 1)); |
| 1909 | } |
| 1910 | |
| 1911 | |
| 1912 |
nothing calls this directly
no test coverage detected