chunkedge_protocol/packets/play/
change_difficulty_c2s.rs

1use chunkedge_binary::{Decode, Encode};
2
3use crate::{Difficulty, Packet};
4
5#[derive(Copy, Clone, PartialEq, Eq, Debug, Encode, Decode, Packet)]
6pub struct ChangeDifficultyC2s {
7    pub difficulty: Difficulty,
8}