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

#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundLockDifficulty {
    pub locked: bool,
}