bancho-packet 0.2.0

Library for handling osu!'s packets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# bancho-packets
Packet Serializer and Deserializer for osu!

example writing usage

```rs
use bancho_packets::*;
...
let mut buffer = BytesMut::new();
bancho_packet::bancho_channel_join_success(&mut buffer, "#osu");
...
```
example reading usage (assuming in_buf is a BytesMut with packets)
```rs
use bancho_packets::*;
let status = bancho_packet::reader::client_user_status(&mut in_buf);
```