aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/player.rs
blob: 9a5ba8abe8b4ad685d7b55dd7f701b8c91ad3276 (plain)
1
2
3
4
5
6
7
use azalea_entity::Entity;

#[derive(Default, Debug)]
pub struct Player {
    /// The entity attached to the player. There's some useful fields here.
    pub entity: Entity,
}