valence_protocol/packets/play/
update_difficulty_lock_c2s.rs

1use crate::{Decode, Encode, Packet};
2
3#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
4pub struct UpdateDifficultyLockC2s {
5    pub locked: bool,
6}