9 lines
181 B
Rust
9 lines
181 B
Rust
use crate::server::net::NetworkClient;
|
|
use crate::world::location::Location;
|
|
|
|
pub struct Player {
|
|
position: Location,
|
|
display_name: String,
|
|
connection: NetworkClient,
|
|
}
|