1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! This module contains the shared functionality between clients, i.e. programs
//! that control player characters in the game world by talking to the server.
//! There are two clients:
//!
//! - Graphical user-facing client: [sdl_client](../sdl_client/index.html).
//! - Headless client for running any number\* of automatically ran bots, to
//! populate empty servers for demonstration: [bot_client](../bot_client/index.html).
//!
//! \* *as far as performance allows*
mod gameplay_socket;
mod logger;
pub use gameplay_socket::*;
pub use logger::*;