1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-21 23:17:45 +00:00

Move CharaMake up to it's super module

This commit is contained in:
Joshua Goins 2025-03-17 17:19:28 -04:00
parent 8859683074
commit c34f5d7ea8
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,5 @@
use kawari::lobby::CharaMake;
use kawari::lobby::LobbyConnection;
use kawari::lobby::chara_make::CharaMake;
use kawari::lobby::ipc::{
CharacterDetails, ClientLobbyIpcData, LobbyCharacterActionKind, ServerLobbyIpcData,
ServerLobbyIpcSegment, ServerLobbyIpcType,

View file

@ -1,7 +1,10 @@
pub mod chara_make;
mod chara_make;
pub use chara_make::CharaMake;
mod client_select_data;
mod connection;
pub use connection::LobbyConnection;
/// The IPC packets for the Lobby connection.
pub mod ipc;