mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-24 16:17:44 +00:00
7 lines
143 B
Rust
7 lines
143 B
Rust
|
use std::fs::write;
|
||
|
|
||
|
pub fn parse_packet(data: &[u8]) {
|
||
|
write("packet.bin", data);
|
||
|
panic!("Unknown packet! Dumping to packet.bin.");
|
||
|
}
|