-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
72 changed files
with
136 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.idea/ | ||
.vscode/ | ||
|
||
/target | ||
target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//! Minecraft protocol packets | ||
|
||
pub(crate) mod base; | ||
pub mod client; | ||
pub mod server; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
//! Packets that bound to client (from server to client) | ||
|
||
mod chunk_data_and_update_light; | ||
pub use chunk_data_and_update_light::{BlockEntity, ChunkDataAndUpdateLight}; | ||
mod finish_configuration; | ||
pub use finish_configuration::FinishConfigurationClientbound; | ||
mod keepalive; | ||
pub use keepalive::ClientboundKeelAlivePlay; | ||
mod login_success; | ||
pub use login_success::{LoginSuccess, LoginSuccessProperty}; | ||
mod play; | ||
pub use play::{DeathInfo, Play}; | ||
mod registry_data; | ||
pub use registry_data::RegistryData; | ||
mod set_default_spawn_position; | ||
pub use set_default_spawn_position::SetDefaultSpawnPosition; | ||
mod status_response; | ||
pub use status_response::StatusResponse; | ||
mod synchronize_player_position; | ||
pub use synchronize_player_position::SynchronizePlayerPosition; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//! Packets that bound to server (from client to server) | ||
|
||
mod finish_configuration; | ||
pub use finish_configuration::FinishConfigurationServerbound; | ||
mod handshake; | ||
pub use handshake::{Handshake, HandshakeNextState}; | ||
mod keepalive; | ||
pub use keepalive::ServerboundKeelAlivePlay; | ||
mod login_acknowledged; | ||
pub use login_acknowledged::LoginAcknowledged; | ||
mod login_start; | ||
pub use login_start::LoginStart; | ||
mod ping; | ||
pub use ping::PingRequest; | ||
mod set_player_position; | ||
pub use set_player_position::SetPlayerPosition; | ||
mod status_request; | ||
pub use status_request::StatusRequest; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
//! Minecraft data types | ||
|
||
pub(crate) mod base; | ||
pub(crate) mod bitset; | ||
pub(crate) mod boolean; | ||
pub(crate) mod byte; | ||
pub(crate) mod byte_array; | ||
pub(crate) mod double; | ||
pub(crate) mod float; | ||
pub(crate) mod int; | ||
pub(crate) mod long; | ||
pub(crate) mod nbt; | ||
pub(crate) mod option; | ||
pub(crate) mod position; | ||
pub(crate) mod short; | ||
pub(crate) mod string; | ||
pub(crate) mod ubyte; | ||
pub(crate) mod ushort; | ||
pub(crate) mod uuid; | ||
pub(crate) mod varint; | ||
pub(crate) mod vec; | ||
|
||
pub use bitset::MCBitSet; | ||
pub use boolean::MCBoolean; | ||
pub use byte::MCByte; | ||
pub use byte_array::MCByteArray; | ||
pub use double::MCDouble; | ||
pub use float::MCFloat; | ||
pub use int::MCInt; | ||
pub use long::MCLong; | ||
pub use nbt::MCNBT; | ||
pub use position::MCPosition; | ||
pub use short::MCShort; | ||
pub use string::MCString; | ||
pub use ubyte::MCUByte; | ||
pub use ushort::MCUShort; | ||
pub use uuid::MCUuid; | ||
pub use varint::MCVarInt; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.