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

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