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
|
|
}
|
|
|