Add v1_16_3 and v1_16_4

This commit is contained in:
timvisee 2021-11-23 15:47:35 +01:00
parent 5b80bc2df3
commit edfdf876c0
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
5 changed files with 15 additions and 2 deletions

View File

@ -1,6 +1,7 @@
pub mod forge_v1_13; pub mod forge_v1_13;
pub mod v1_14_4; pub mod v1_14_4;
pub mod v1_16_5; pub mod v1_16_3;
pub mod v1_16_4;
pub mod v1_17; pub mod v1_17;
pub mod v1_17_1; pub mod v1_17_1;

View File

@ -0,0 +1,6 @@
// Spec: https://wiki.vg/index.php?title=Protocol&oldid=16091
pub mod game;
/// Minecraft protocol version.
pub const PROTOCOL: u32 = 753;

View File

@ -0,0 +1,6 @@
// Re-export
pub use crate::version::v1_16_3::game::{
ClientBoundKeepAlive, ClientBoundPluginMessage, JoinGame, NamedSoundEffect,
PlayerPositionAndLook, Respawn, ServerBoundKeepAlive, ServerBoundPluginMessage, TimeUpdate,
Title,
};

View File

@ -1,4 +1,4 @@
// Spec: https://wiki.vg/index.php?title=Protocol&oldid=16681 // Spec: https://wiki.vg/index.php?title=Protocol&oldid=16317
pub mod game; pub mod game;