aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_attack.rs
blob: 0edc2395e9352b1f2a54d7bb8ef834dcb09f2626 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_core::entity_id::MinecraftEntityId;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundAttack {
    pub entity_id: MinecraftEntityId,
}