blob: 72acb705e37e2a5c26edf09bed75e15c69802670 (
plain)
1
2
3
4
5
6
7
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;
#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
pub struct ServerboundLockDifficulty {
pub locked: bool,
}
|