aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/entity.rs
blob: d91f556f1e0918010829a1820c5128c3e20d8ded (plain)
1
2
3
4
5
6
7
8
use azalea_core::EntityPos;

#[derive(Default, Debug)]
pub struct Entity {
    /// The incremental numerical id of the entity.
    pub id: u32,
    pub pos: EntityPos,
}