pixeldike 0.1.0

pixel drawing game for programmers inspired by reddits r/place
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Client implementation for different transport protocols

mod gen_client;
#[cfg(feature = "tcp")]
mod tcp_client;
#[cfg(feature = "udp")]
mod udp_client;

pub use gen_client::GenClient;
#[cfg(feature = "tcp")]
pub use tcp_client::TcpClient;
#[cfg(feature = "udp")]
pub use udp_client::UdpClient;