quectocraft/src/network/mod.rs

13 lines
155 B
Rust
Raw Normal View History

2022-12-02 23:27:53 +00:00
use uuid::Uuid;
2022-12-04 06:06:21 +00:00
mod client;
mod server;
2022-12-02 23:27:53 +00:00
2022-12-04 06:06:21 +00:00
pub use server::NetworkServer;
2022-12-02 23:27:53 +00:00
#[derive(Debug)]
pub struct Player {
pub name: String,
pub uuid: Uuid,
}