1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-25 08:27:44 +00:00

Add missing connection types

This commit is contained in:
Joshua Goins 2025-03-08 15:33:58 -05:00
parent 2f996f0012
commit 21419aa09c

View file

@ -21,6 +21,9 @@ pub(crate) fn read_string(byte_stream: Vec<u8>) -> String {
#[brw(repr = u16)]
#[derive(Debug)]
enum ConnectionType {
None = 0x0,
Zone = 0x1,
Chat = 0x2,
Lobby = 0x3,
}