soulsand_client/lib.rs
1//! Minecraft client implementation.
2//!
3//! Provides TCP connection, protocol state machine, and packet handling.
4
5mod client;
6mod connection;
7mod handler;
8
9pub use client::{Client, ClientConfig, ClientError, ClientState};
10pub use connection::{Connection, ConnectionError};
11pub use handler::{PacketHandler, PacketHandlerResult};