1
2
3
4
5
6
7
use crate::{Decode, Encode, Packet, VarInt};

#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
pub struct EntityAnimationS2c {
    pub entity_id: VarInt,
    pub animation: u8,
}