mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-22 07:27:44 +00:00
12 lines
328 B
Rust
12 lines
328 B
Rust
|
use binrw::binrw;
|
||
|
|
||
|
#[binrw]
|
||
|
#[brw(repr = u16)]
|
||
|
#[derive(Clone, PartialEq, Debug)]
|
||
|
pub enum IPCOpCode {
|
||
|
/// Sent by the client after exchanging encryption information with the lobby server.
|
||
|
ClientVersionInfo = 0x5,
|
||
|
/// Sent by the server to inform the client of service accounts.
|
||
|
LobbyServiceAccountList = 0xC,
|
||
|
}
|