diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_time.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_set_time.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_time.rs b/azalea-protocol/src/packets/game/c_set_time.rs new file mode 100755 index 00000000..b1970eec --- /dev/null +++ b/azalea-protocol/src/packets/game/c_set_time.rs @@ -0,0 +1,9 @@ +use azalea_buf::AzBuf; +use azalea_protocol_macros::ClientboundGamePacket; + +#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] +pub struct ClientboundSetTime { + pub game_time: u64, + pub day_time: u64, + pub tick_day_time: bool, +} |
