1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-06-08 17:37:46 +00:00
kawari/src/lobby/mod.rs
Joshua Goins 4b67b22c9f Show the actual character list on the lobby screen
This doesn't do any actual account checking yet, but it works pretty well.
2025-03-21 21:26:32 -04:00

11 lines
260 B
Rust

mod chara_make;
pub use chara_make::CharaMake;
mod client_select_data;
pub use client_select_data::ClientSelectData;
mod connection;
pub use connection::{LobbyConnection, send_custom_world_packet};
/// The IPC packets for the Lobby connection.
pub mod ipc;