blob: 0414af461f3d7949694d34acb58a977cd97c49b1 (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::McBuf;
use azalea_core::Difficulty;
use packet_macros::ServerboundGamePacket;
#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundChangeDifficultyPacket {
pub difficulty: Difficulty,
}
|