aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_time.rs
blob: ff795e87cf361c18cb066e28b130a076a5fd3d78 (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundSetTime {
    pub game_time: u64,
    pub day_time: u64,
    pub tick_day_time: bool,
}