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

#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundLockDifficultyPacket {
    pub locked: bool,
}