blob: 047e4c8832ff623a27e72e61258d1a6e68db5068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use azalea_buf::AzBuf;
use azalea_chat::FormattedText;
use azalea_protocol_macros::ClientboundGamePacket;
use azalea_core::entity_id::MinecraftEntityId;
/// Used to send a respawn screen.
#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundPlayerCombatKill {
#[var]
pub player_id: MinecraftEntityId,
pub message: FormattedText,
}
|