valence_protocol/packets/play/
update_difficulty_c2s.rs

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