1use crate::{Decode, Encode, Packet, VarInt};
23#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
4pub struct DamageTiltS2c {
5/// The ID of the entity taking damage.
6pub entity_id: VarInt,
7/// The direction the damage is coming from in relation to the entity.
8pub yaw: f32,
9}