mirror of
https://github.com/GIKExe/rust_mc_serv.git
synced 2025-06-24 02:12:58 +03:00
15 lines
165 B
Rust
15 lines
165 B
Rust
pub mod id;
|
|
pub mod play;
|
|
pub mod handler;
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub enum ConnectionState {
|
|
Handshake,
|
|
Status,
|
|
Login,
|
|
Configuration,
|
|
Play
|
|
}
|
|
|