blob: 45d140136db2489dddd7293e3dea98ef80323918 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use azalea_buf::AzBuf;
use azalea_registry::identifier::Identifier;
use azalea_protocol_macros::ServerboundConfigPacket;
use simdnbt::owned::Nbt;
#[derive(AzBuf, Clone, Debug, PartialEq, ServerboundConfigPacket)]
pub struct ServerboundCustomClickAction {
pub id: Identifier,
pub payload: Nbt,
}
|