chunkedge_protocol/packets/play/
change_difficulty_s2c.rs1use chunkedge_binary::{Decode, Encode};
2
3use crate::{Difficulty, Packet};
4
5#[derive(Copy, Clone, PartialEq, Eq, Debug, Encode, Decode, Packet)]
6pub struct ChangeDifficultyS2c {
7 pub difficulty: Difficulty,
8 pub locked: bool,
9}