aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_paddle_boat_packet.rs
blob: 2db9ef2e5a85be13542d571b479e6eaf358ba58c (plain)
1
2
3
4
5
6
7
8
use azalea_buf::McBuf;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundPaddleBoatPacket {
    pub left: bool,
    pub right: bool,
}