├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── crates ├── addon │ ├── Cargo.toml │ └── src │ │ ├── behavior │ │ ├── blocks │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── traits │ │ │ │ └── mod.rs │ │ ├── items │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── menu_category.rs │ │ └── mod.rs │ │ ├── error.rs │ │ ├── identifier.rs │ │ ├── language │ │ ├── code.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── manifest.rs │ │ ├── resource │ │ └── mod.rs │ │ └── version.rs ├── core │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── form │ ├── Cargo.toml │ └── src │ │ ├── elems │ │ ├── button.rs │ │ ├── dropdown.rs │ │ ├── input.rs │ │ ├── label.rs │ │ ├── mod.rs │ │ ├── slider.rs │ │ ├── step_slider.rs │ │ └── toggle.rs │ │ ├── error.rs │ │ ├── forms │ │ ├── custom.rs │ │ ├── mod.rs │ │ ├── modal.rs │ │ └── simple.rs │ │ └── lib.rs ├── level │ ├── Cargo.toml │ ├── src │ │ ├── level │ │ │ ├── chunk.rs │ │ │ ├── chunk_cache.rs │ │ │ ├── db_interface │ │ │ │ ├── bedrock_key.rs │ │ │ │ ├── db.rs │ │ │ │ ├── key_level.rs │ │ │ │ ├── mod.rs │ │ │ │ └── rusty.rs │ │ │ ├── file_interface.rs │ │ │ ├── level.rs │ │ │ ├── mod.rs │ │ │ ├── sub_chunk.rs │ │ │ └── world_block.rs │ │ ├── lib.rs │ │ └── types │ │ │ ├── clear_cache.rs │ │ │ ├── miner.rs │ │ │ └── mod.rs │ ├── test_level │ │ ├── LOCK │ │ ├── LOG │ │ ├── db │ │ │ ├── 000010.ldb │ │ │ ├── 000012.log │ │ │ ├── 000013.ldb │ │ │ ├── CURRENT │ │ │ ├── LOCK │ │ │ ├── LOG │ │ │ ├── LOG.old │ │ │ └── MANIFEST-000007 │ │ ├── level.dat │ │ ├── levelname.txt │ │ └── world_icon.jpeg │ └── tests │ │ └── api_test.rs ├── macros │ ├── Cargo.toml │ └── src │ │ ├── attr.rs │ │ ├── de.rs │ │ ├── lib.rs │ │ ├── ser.rs │ │ └── size.rs ├── proto │ ├── Cargo.toml │ └── src │ │ ├── codec.rs │ │ ├── compression.rs │ │ ├── connection │ │ ├── mod.rs │ │ └── shard │ │ │ ├── arc.rs │ │ │ ├── mod.rs │ │ │ └── task.rs │ │ ├── encryption.rs │ │ ├── error.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── lib.rs │ │ ├── listener.rs │ │ ├── transport │ │ ├── connection.rs │ │ ├── listener.rs │ │ └── mod.rs │ │ └── version │ │ ├── mod.rs │ │ ├── v662 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── filter_text.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── tick_sync.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v671 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── tick_sync.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v685 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v686 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_close_form.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v712 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_close_form.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── current_structure_feature.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── jigsaw_structure_data.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_bound_diagnostics.rs │ │ │ ├── server_bound_loading_screen.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── full_container_name.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v729 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── aim_assist_action.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_aim_assist.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_close_form.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_registry_cleanup.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── current_structure_feature.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── jigsaw_structure_data.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_bound_diagnostics.rs │ │ │ ├── server_bound_loading_screen.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── full_container_name.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v748 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── aim_assist_action.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── authoritative_movement_mode.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── movement_effect_type.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_aim_assist.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_close_form.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_registry_cleanup.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── current_structure_feature.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── jigsaw_structure_data.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── movement_effect.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_bound_diagnostics.rs │ │ │ ├── server_bound_loading_screen.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_movement_authority.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── full_container_name.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v766 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── aim_assist_action.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── authoritative_movement_mode.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── movement_effect_type.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_aim_assist.rs │ │ │ ├── camera_aim_assist_presets.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_close_form.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_registry_cleanup.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── current_structure_feature.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── jigsaw_structure_data.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── movement_effect.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_bound_diagnostics.rs │ │ │ ├── server_bound_loading_screen.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_movement_authority.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_aim_assist_categories.rs │ │ │ ├── camera_aim_assist_category.rs │ │ │ ├── camera_aim_assist_item_settings.rs │ │ │ ├── camera_aim_assist_preset.rs │ │ │ ├── camera_aim_assist_preset_definition.rs │ │ │ ├── camera_aim_assist_priority.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── full_container_name.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ ├── v776 │ │ ├── enums │ │ │ ├── abilities_index.rs │ │ │ ├── actor_block_sync_message_id.rs │ │ │ ├── actor_damage_cause.rs │ │ │ ├── actor_data_ids.rs │ │ │ ├── actor_event.rs │ │ │ ├── actor_flags.rs │ │ │ ├── actor_link_type.rs │ │ │ ├── actor_type.rs │ │ │ ├── agent_action_type.rs │ │ │ ├── aim_assist_action.rs │ │ │ ├── animation_mode.rs │ │ │ ├── attribute_modifier_operation.rs │ │ │ ├── attribute_operands.rs │ │ │ ├── authoritative_movement_mode.rs │ │ │ ├── book_edit_action.rs │ │ │ ├── boss_event_update_type.rs │ │ │ ├── build_platform.rs │ │ │ ├── camera_aim_assist_operation.rs │ │ │ ├── camera_shake_action.rs │ │ │ ├── camera_shake_type.rs │ │ │ ├── chat_restriction_level.rs │ │ │ ├── client_play_mode.rs │ │ │ ├── code_builder_code_status.rs │ │ │ ├── code_builder_storage.rs │ │ │ ├── command_block_mode.rs │ │ │ ├── command_origin_type.rs │ │ │ ├── command_output_type.rs │ │ │ ├── command_parameter_option.rs │ │ │ ├── command_permission_level.rs │ │ │ ├── complex_inventory_transaction_type.rs │ │ │ ├── connection_fail_reason.rs │ │ │ ├── container_enum_name.rs │ │ │ ├── container_id.rs │ │ │ ├── container_type.rs │ │ │ ├── crafting_data_entry_type.rs │ │ │ ├── crafting_type.rs │ │ │ ├── data_item_type.rs │ │ │ ├── difficulty.rs │ │ │ ├── easing_type.rs │ │ │ ├── editor_world_type.rs │ │ │ ├── education_edition_offer.rs │ │ │ ├── enchant_type.rs │ │ │ ├── game_publish_setting.rs │ │ │ ├── game_type.rs │ │ │ ├── generator_type.rs │ │ │ ├── hud_element.rs │ │ │ ├── hud_visibility.rs │ │ │ ├── identity_definition_type.rs │ │ │ ├── input_mode.rs │ │ │ ├── inventory_layout.rs │ │ │ ├── inventory_left_tab_index.rs │ │ │ ├── inventory_right_tab_index.rs │ │ │ ├── inventory_source_flags.rs │ │ │ ├── inventory_source_type.rs │ │ │ ├── item_descriptor_type.rs │ │ │ ├── item_release_inventory_transaction_type.rs │ │ │ ├── item_stack_net_result.rs │ │ │ ├── item_stack_request_action_type.rs │ │ │ ├── item_use_inventory_transaction_type.rs │ │ │ ├── item_use_method.rs │ │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ │ ├── item_version.rs │ │ │ ├── lab_table_reaction_type.rs │ │ │ ├── lesson_action.rs │ │ │ ├── level_event.rs │ │ │ ├── level_sound_event_type.rs │ │ │ ├── minecraft_eventing.rs │ │ │ ├── minecraft_packet_ids.rs │ │ │ ├── mirror.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_cancel_reason.rs │ │ │ ├── molang_version.rs │ │ │ ├── movement_effect_type.rs │ │ │ ├── multiplayer_settings_packet_type.rs │ │ │ ├── new_interaction_model.rs │ │ │ ├── objective_sort_order.rs │ │ │ ├── pack_type.rs │ │ │ ├── packet_compression_algorithm.rs │ │ │ ├── packet_violation_severity.rs │ │ │ ├── packet_violation_type.rs │ │ │ ├── particle_type.rs │ │ │ ├── persona.rs │ │ │ ├── photo_type.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action_type.rs │ │ │ ├── player_list_packet_type.rs │ │ │ ├── player_permission_level.rs │ │ │ ├── player_position_mode.rs │ │ │ ├── player_respawn_state.rs │ │ │ ├── prediction_type.rs │ │ │ ├── resource_pack_response.rs │ │ │ ├── rotation.rs │ │ │ ├── score_packet_type.rs │ │ │ ├── scoreboard_identity_packet_type.rs │ │ │ ├── server_auth_movement_mode.rs │ │ │ ├── show_store_offer_redirect_type.rs │ │ │ ├── simulation_type.rs │ │ │ ├── soft_enum_update_type.rs │ │ │ ├── spawn_biome_type.rs │ │ │ ├── spawn_position_type.rs │ │ │ ├── structure_block_type.rs │ │ │ ├── structure_redstone_save_mode.rs │ │ │ ├── structure_template_request_operation.rs │ │ │ ├── structure_template_response_type.rs │ │ │ ├── text_packet_type.rs │ │ │ ├── text_processing_event_origin.rs │ │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ │ ├── actor_event.rs │ │ │ ├── actor_pick_request.rs │ │ │ ├── add_actor.rs │ │ │ ├── add_behaviour_tree.rs │ │ │ ├── add_item_actor.rs │ │ │ ├── add_painting.rs │ │ │ ├── add_player.rs │ │ │ ├── add_volume_entity.rs │ │ │ ├── agent_action_event.rs │ │ │ ├── agent_animation.rs │ │ │ ├── animate.rs │ │ │ ├── animate_entity.rs │ │ │ ├── anvil_damage.rs │ │ │ ├── automation_client_connect.rs │ │ │ ├── available_actor_identifiers.rs │ │ │ ├── available_commands.rs │ │ │ ├── award_achievement.rs │ │ │ ├── biome_definition_list.rs │ │ │ ├── block_actor_data.rs │ │ │ ├── block_event.rs │ │ │ ├── block_pick_request.rs │ │ │ ├── book_edit.rs │ │ │ ├── boss_event.rs │ │ │ ├── camera.rs │ │ │ ├── camera_aim_assist.rs │ │ │ ├── camera_aim_assist_instruction.rs │ │ │ ├── camera_aim_assist_presets.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_presets.rs │ │ │ ├── camera_shake.rs │ │ │ ├── change_dimension.rs │ │ │ ├── change_mob_property.rs │ │ │ ├── chunk_radius_updated.rs │ │ │ ├── client_bound_close_form.rs │ │ │ ├── client_bound_debug_renderer.rs │ │ │ ├── client_bound_map_item_data.rs │ │ │ ├── client_cache_blob_status.rs │ │ │ ├── client_cache_miss_response.rs │ │ │ ├── client_cache_status.rs │ │ │ ├── client_to_server_handshake.rs │ │ │ ├── code_builder.rs │ │ │ ├── code_builder_source.rs │ │ │ ├── command_block_update.rs │ │ │ ├── command_output.rs │ │ │ ├── command_request.rs │ │ │ ├── completed_using_item.rs │ │ │ ├── compressed_biome_definition_list.rs │ │ │ ├── container_close.rs │ │ │ ├── container_open.rs │ │ │ ├── container_registry_cleanup.rs │ │ │ ├── container_set_data.rs │ │ │ ├── correct_player_move_prediction.rs │ │ │ ├── crafting_data.rs │ │ │ ├── create_photo.rs │ │ │ ├── creative_content.rs │ │ │ ├── current_structure_feature.rs │ │ │ ├── death_info.rs │ │ │ ├── debug_info.rs │ │ │ ├── dimension_data.rs │ │ │ ├── disconnect.rs │ │ │ ├── editor_network.rs │ │ │ ├── edu_uri_resource.rs │ │ │ ├── education_settings.rs │ │ │ ├── emote.rs │ │ │ ├── emote_list.rs │ │ │ ├── feature_registry.rs │ │ │ ├── game_rules_changed.rs │ │ │ ├── game_test_request.rs │ │ │ ├── game_test_results.rs │ │ │ ├── gui_data_pick_item.rs │ │ │ ├── hurt_armor.rs │ │ │ ├── interact.rs │ │ │ ├── inventory_content.rs │ │ │ ├── inventory_slot.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_component.rs │ │ │ ├── item_stack_request.rs │ │ │ ├── item_stack_response.rs │ │ │ ├── jigsaw_structure_data.rs │ │ │ ├── lab_table.rs │ │ │ ├── lectern_update.rs │ │ │ ├── legacy_telemetry_event.rs │ │ │ ├── lesson_progress.rs │ │ │ ├── level_chunk.rs │ │ │ ├── level_event.rs │ │ │ ├── level_event_generic.rs │ │ │ ├── level_sound_event.rs │ │ │ ├── level_sound_event_v1.rs │ │ │ ├── level_sound_event_v2.rs │ │ │ ├── login.rs │ │ │ ├── map_create_locked_copy.rs │ │ │ ├── map_info_request.rs │ │ │ ├── mob_armor_equipment.rs │ │ │ ├── mob_effect.rs │ │ │ ├── mob_equipment.rs │ │ │ ├── mod.rs │ │ │ ├── modal_form_request.rs │ │ │ ├── modal_form_response.rs │ │ │ ├── motion_prediction_hints.rs │ │ │ ├── move_actor_absolute.rs │ │ │ ├── move_actor_delta.rs │ │ │ ├── move_player.rs │ │ │ ├── movement_effect.rs │ │ │ ├── movement_prediction_sync.rs │ │ │ ├── multiplayer_settings.rs │ │ │ ├── network_chunk_publisher_update.rs │ │ │ ├── network_settings.rs │ │ │ ├── network_stack_latency.rs │ │ │ ├── npc_dialogue.rs │ │ │ ├── npc_request.rs │ │ │ ├── on_screen_texture_animation.rs │ │ │ ├── open_sign.rs │ │ │ ├── packet_violation_warning.rs │ │ │ ├── passenger_jump.rs │ │ │ ├── photo_transfer.rs │ │ │ ├── play_sound.rs │ │ │ ├── play_status.rs │ │ │ ├── player_action.rs │ │ │ ├── player_armor_damage.rs │ │ │ ├── player_auth_input.rs │ │ │ ├── player_enchant_options.rs │ │ │ ├── player_fog.rs │ │ │ ├── player_hotbar.rs │ │ │ ├── player_input.rs │ │ │ ├── player_list.rs │ │ │ ├── player_skin.rs │ │ │ ├── player_start_item_cooldown.rs │ │ │ ├── player_toggle_crafter_slot_request.rs │ │ │ ├── position_tracking_db_client_request.rs │ │ │ ├── position_tracking_db_server_broadcast.rs │ │ │ ├── purchase_receipt.rs │ │ │ ├── refresh_entitlements.rs │ │ │ ├── remove_actor.rs │ │ │ ├── remove_objective.rs │ │ │ ├── remove_volume_entity.rs │ │ │ ├── request_ability.rs │ │ │ ├── request_chunk_radius.rs │ │ │ ├── request_network_settings.rs │ │ │ ├── request_permissions.rs │ │ │ ├── resource_pack_chunk_data.rs │ │ │ ├── resource_pack_chunk_request.rs │ │ │ ├── resource_pack_client_response.rs │ │ │ ├── resource_pack_data_info.rs │ │ │ ├── resource_pack_stack.rs │ │ │ ├── resource_packs_info.rs │ │ │ ├── respawn.rs │ │ │ ├── script_message.rs │ │ │ ├── server_bound_diagnostics.rs │ │ │ ├── server_bound_loading_screen.rs │ │ │ ├── server_player_post_move_position.rs │ │ │ ├── server_settings_request.rs │ │ │ ├── server_settings_response.rs │ │ │ ├── server_stats.rs │ │ │ ├── server_to_client_handshake.rs │ │ │ ├── set_actor_data.rs │ │ │ ├── set_actor_link.rs │ │ │ ├── set_actor_motion.rs │ │ │ ├── set_commands_enabled.rs │ │ │ ├── set_default_game_type.rs │ │ │ ├── set_difficulty.rs │ │ │ ├── set_display_objective.rs │ │ │ ├── set_health.rs │ │ │ ├── set_hud.rs │ │ │ ├── set_last_hurt_by.rs │ │ │ ├── set_local_player_as_initialized.rs │ │ │ ├── set_movement_authority.rs │ │ │ ├── set_player_game_type.rs │ │ │ ├── set_player_inventory_options.rs │ │ │ ├── set_score.rs │ │ │ ├── set_scoreboard_identity.rs │ │ │ ├── set_spawn_position.rs │ │ │ ├── set_time.rs │ │ │ ├── set_title.rs │ │ │ ├── settings_command.rs │ │ │ ├── show_credits.rs │ │ │ ├── show_profile.rs │ │ │ ├── show_store_offer.rs │ │ │ ├── simple_event.rs │ │ │ ├── simulation_type.rs │ │ │ ├── spawn_experience_orb.rs │ │ │ ├── spawn_particle_effect.rs │ │ │ ├── start_game.rs │ │ │ ├── stop_sound.rs │ │ │ ├── structure_block_update.rs │ │ │ ├── structure_data_request.rs │ │ │ ├── structure_data_response.rs │ │ │ ├── sub_chunk.rs │ │ │ ├── sub_chunk_request.rs │ │ │ ├── sub_client_login.rs │ │ │ ├── sync_actor_property.rs │ │ │ ├── take_item_actor.rs │ │ │ ├── text.rs │ │ │ ├── ticking_area_load_status.rs │ │ │ ├── toast_request.rs │ │ │ ├── transfer_player.rs │ │ │ ├── trim_data.rs │ │ │ ├── unlocked_recipes.rs │ │ │ ├── update_abilities.rs │ │ │ ├── update_adventure_settings.rs │ │ │ ├── update_attributes.rs │ │ │ ├── update_block.rs │ │ │ ├── update_block_synced.rs │ │ │ ├── update_client_input_locks.rs │ │ │ ├── update_equip.rs │ │ │ ├── update_player_game_type.rs │ │ │ ├── update_soft_enum.rs │ │ │ ├── update_sub_chunk_blocks.rs │ │ │ └── update_trade.rs │ │ └── types │ │ │ ├── actor_link.rs │ │ │ ├── actor_runtime_id.rs │ │ │ ├── actor_unique_id.rs │ │ │ ├── adventure_settings.rs │ │ │ ├── base_description.rs │ │ │ ├── base_game_version.rs │ │ │ ├── block_pos.rs │ │ │ ├── camera_aim_assist_categories.rs │ │ │ ├── camera_aim_assist_category.rs │ │ │ ├── camera_aim_assist_item_settings.rs │ │ │ ├── camera_aim_assist_preset.rs │ │ │ ├── camera_aim_assist_preset_definition.rs │ │ │ ├── camera_aim_assist_priority.rs │ │ │ ├── camera_instruction.rs │ │ │ ├── camera_preset.rs │ │ │ ├── camera_presets.rs │ │ │ ├── chunk_pos.rs │ │ │ ├── command_origin_data.rs │ │ │ ├── container_mix_data_entry.rs │ │ │ ├── crafting_data_entry.rs │ │ │ ├── data_item.rs │ │ │ ├── dimension_definition_group.rs │ │ │ ├── edu_shared_uri_resource.rs │ │ │ ├── education_level_settings.rs │ │ │ ├── entity_net_id.rs │ │ │ ├── experiments.rs │ │ │ ├── full_container_name.rs │ │ │ ├── game_rules_changed_packet_data.rs │ │ │ ├── inventory_action.rs │ │ │ ├── inventory_source.rs │ │ │ ├── inventory_transaction.rs │ │ │ ├── item_data.rs │ │ │ ├── item_enchants.rs │ │ │ ├── item_instance_user_data.rs │ │ │ ├── item_stack_request_slot_info.rs │ │ │ ├── item_stack_response_container_info.rs │ │ │ ├── item_stack_response_info.rs │ │ │ ├── item_stack_response_slot_info.rs │ │ │ ├── level_settings.rs │ │ │ ├── map_decoration.rs │ │ │ ├── map_item_tracked_actor_unique_id.rs │ │ │ ├── material_reducer_data_entry.rs │ │ │ ├── mod.rs │ │ │ ├── molang_variable_map.rs │ │ │ ├── move_actor_absolute_data.rs │ │ │ ├── move_actor_delta_data.rs │ │ │ ├── network_block_position.rs │ │ │ ├── network_item_instance_descriptor.rs │ │ │ ├── network_item_stack_descriptor.rs │ │ │ ├── network_permissions.rs │ │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ │ ├── player_block_action_data.rs │ │ │ ├── player_block_actions.rs │ │ │ ├── position_tracking_id.rs │ │ │ ├── potion_mix_data_entry.rs │ │ │ ├── property_sync_data.rs │ │ │ ├── recipe_ingredient.rs │ │ │ ├── recipe_unlocking_requirement.rs │ │ │ ├── scoreboard_id.rs │ │ │ ├── serialized_abilities_data.rs │ │ │ ├── serialized_skin.rs │ │ │ ├── shaped_chemistry_recipe.rs │ │ │ ├── shaped_recipe.rs │ │ │ ├── shapeless_chemistry_recipe.rs │ │ │ ├── shapeless_recipe.rs │ │ │ ├── shulker_box_recipe.rs │ │ │ ├── smithing_transform_recipe.rs │ │ │ ├── smithing_trim_recipe.rs │ │ │ ├── spawn_settings.rs │ │ │ ├── structure_editor_data.rs │ │ │ ├── structure_settings.rs │ │ │ ├── sub_chunk_pos.rs │ │ │ ├── sub_chunk_pos_offset.rs │ │ │ ├── synced_player_movement_settings.rs │ │ │ └── web_socket_packet_data.rs │ │ └── v786 │ │ ├── enums │ │ ├── abilities_index.rs │ │ ├── actor_block_sync_message_id.rs │ │ ├── actor_damage_cause.rs │ │ ├── actor_data_ids.rs │ │ ├── actor_event.rs │ │ ├── actor_flags.rs │ │ ├── actor_link_type.rs │ │ ├── actor_type.rs │ │ ├── agent_action_type.rs │ │ ├── aim_assist_action.rs │ │ ├── animation_mode.rs │ │ ├── attribute_modifier_operation.rs │ │ ├── attribute_operands.rs │ │ ├── authoritative_movement_mode.rs │ │ ├── book_edit_action.rs │ │ ├── boss_event_update_type.rs │ │ ├── build_platform.rs │ │ ├── camera_aim_assist_operation.rs │ │ ├── camera_shake_action.rs │ │ ├── camera_shake_type.rs │ │ ├── chat_restriction_level.rs │ │ ├── client_play_mode.rs │ │ ├── code_builder_code_status.rs │ │ ├── code_builder_storage.rs │ │ ├── command_block_mode.rs │ │ ├── command_origin_type.rs │ │ ├── command_output_type.rs │ │ ├── command_parameter_option.rs │ │ ├── command_permission_level.rs │ │ ├── complex_inventory_transaction_type.rs │ │ ├── connection_fail_reason.rs │ │ ├── container_enum_name.rs │ │ ├── container_id.rs │ │ ├── container_type.rs │ │ ├── crafting_data_entry_type.rs │ │ ├── crafting_type.rs │ │ ├── data_item_type.rs │ │ ├── difficulty.rs │ │ ├── easing_type.rs │ │ ├── editor_world_type.rs │ │ ├── education_edition_offer.rs │ │ ├── enchant_type.rs │ │ ├── game_publish_setting.rs │ │ ├── game_type.rs │ │ ├── generator_type.rs │ │ ├── hud_element.rs │ │ ├── hud_visibility.rs │ │ ├── identity_definition_type.rs │ │ ├── input_mode.rs │ │ ├── inventory_layout.rs │ │ ├── inventory_left_tab_index.rs │ │ ├── inventory_right_tab_index.rs │ │ ├── inventory_source_flags.rs │ │ ├── inventory_source_type.rs │ │ ├── item_descriptor_type.rs │ │ ├── item_release_inventory_transaction_type.rs │ │ ├── item_stack_net_result.rs │ │ ├── item_stack_request_action_type.rs │ │ ├── item_use_inventory_transaction_type.rs │ │ ├── item_use_method.rs │ │ ├── item_use_on_actor_inventory_transaction_type.rs │ │ ├── item_version.rs │ │ ├── lab_table_reaction_type.rs │ │ ├── lesson_action.rs │ │ ├── level_event.rs │ │ ├── level_sound_event_type.rs │ │ ├── minecraft_eventing.rs │ │ ├── minecraft_packet_ids.rs │ │ ├── mirror.rs │ │ ├── mod.rs │ │ ├── modal_form_cancel_reason.rs │ │ ├── molang_version.rs │ │ ├── movement_effect_type.rs │ │ ├── multiplayer_settings_packet_type.rs │ │ ├── new_interaction_model.rs │ │ ├── objective_sort_order.rs │ │ ├── pack_type.rs │ │ ├── packet_compression_algorithm.rs │ │ ├── packet_violation_severity.rs │ │ ├── packet_violation_type.rs │ │ ├── particle_type.rs │ │ ├── persona.rs │ │ ├── photo_type.rs │ │ ├── play_status.rs │ │ ├── player_action_type.rs │ │ ├── player_list_packet_type.rs │ │ ├── player_permission_level.rs │ │ ├── player_position_mode.rs │ │ ├── player_respawn_state.rs │ │ ├── prediction_type.rs │ │ ├── resource_pack_response.rs │ │ ├── rotation.rs │ │ ├── score_packet_type.rs │ │ ├── scoreboard_identity_packet_type.rs │ │ ├── server_auth_movement_mode.rs │ │ ├── show_store_offer_redirect_type.rs │ │ ├── simulation_type.rs │ │ ├── soft_enum_update_type.rs │ │ ├── spawn_biome_type.rs │ │ ├── spawn_position_type.rs │ │ ├── structure_block_type.rs │ │ ├── structure_redstone_save_mode.rs │ │ ├── structure_template_request_operation.rs │ │ ├── structure_template_response_type.rs │ │ ├── text_packet_type.rs │ │ ├── text_processing_event_origin.rs │ │ └── ui_profile.rs │ │ ├── gamepackets.rs │ │ ├── helper.rs │ │ ├── info.rs │ │ ├── mod.rs │ │ ├── packets │ │ ├── actor_event.rs │ │ ├── actor_pick_request.rs │ │ ├── add_actor.rs │ │ ├── add_behaviour_tree.rs │ │ ├── add_item_actor.rs │ │ ├── add_painting.rs │ │ ├── add_player.rs │ │ ├── add_volume_entity.rs │ │ ├── agent_action_event.rs │ │ ├── agent_animation.rs │ │ ├── animate.rs │ │ ├── animate_entity.rs │ │ ├── anvil_damage.rs │ │ ├── automation_client_connect.rs │ │ ├── available_actor_identifiers.rs │ │ ├── available_commands.rs │ │ ├── award_achievement.rs │ │ ├── biome_definition_list.rs │ │ ├── block_actor_data.rs │ │ ├── block_event.rs │ │ ├── block_pick_request.rs │ │ ├── book_edit.rs │ │ ├── boss_event.rs │ │ ├── camera.rs │ │ ├── camera_aim_assist.rs │ │ ├── camera_aim_assist_instruction.rs │ │ ├── camera_aim_assist_presets.rs │ │ ├── camera_instruction.rs │ │ ├── camera_presets.rs │ │ ├── camera_shake.rs │ │ ├── change_dimension.rs │ │ ├── change_mob_property.rs │ │ ├── chunk_radius_updated.rs │ │ ├── client_bound_close_form.rs │ │ ├── client_bound_debug_renderer.rs │ │ ├── client_bound_map_item_data.rs │ │ ├── client_cache_blob_status.rs │ │ ├── client_cache_miss_response.rs │ │ ├── client_cache_status.rs │ │ ├── client_to_server_handshake.rs │ │ ├── code_builder.rs │ │ ├── code_builder_source.rs │ │ ├── command_block_update.rs │ │ ├── command_output.rs │ │ ├── command_request.rs │ │ ├── completed_using_item.rs │ │ ├── compressed_biome_definition_list.rs │ │ ├── container_close.rs │ │ ├── container_open.rs │ │ ├── container_registry_cleanup.rs │ │ ├── container_set_data.rs │ │ ├── correct_player_move_prediction.rs │ │ ├── crafting_data.rs │ │ ├── create_photo.rs │ │ ├── creative_content.rs │ │ ├── current_structure_feature.rs │ │ ├── death_info.rs │ │ ├── debug_info.rs │ │ ├── dimension_data.rs │ │ ├── disconnect.rs │ │ ├── editor_network.rs │ │ ├── edu_uri_resource.rs │ │ ├── education_settings.rs │ │ ├── emote.rs │ │ ├── emote_list.rs │ │ ├── feature_registry.rs │ │ ├── game_rules_changed.rs │ │ ├── game_test_request.rs │ │ ├── game_test_results.rs │ │ ├── gui_data_pick_item.rs │ │ ├── hurt_armor.rs │ │ ├── interact.rs │ │ ├── inventory_content.rs │ │ ├── inventory_slot.rs │ │ ├── inventory_transaction.rs │ │ ├── item_component.rs │ │ ├── item_stack_request.rs │ │ ├── item_stack_response.rs │ │ ├── jigsaw_structure_data.rs │ │ ├── lab_table.rs │ │ ├── lectern_update.rs │ │ ├── legacy_telemetry_event.rs │ │ ├── lesson_progress.rs │ │ ├── level_chunk.rs │ │ ├── level_event.rs │ │ ├── level_event_generic.rs │ │ ├── level_sound_event.rs │ │ ├── login.rs │ │ ├── map_create_locked_copy.rs │ │ ├── map_info_request.rs │ │ ├── mob_armor_equipment.rs │ │ ├── mob_effect.rs │ │ ├── mob_equipment.rs │ │ ├── mod.rs │ │ ├── modal_form_request.rs │ │ ├── modal_form_response.rs │ │ ├── motion_prediction_hints.rs │ │ ├── move_actor_absolute.rs │ │ ├── move_actor_delta.rs │ │ ├── move_player.rs │ │ ├── movement_effect.rs │ │ ├── movement_prediction_sync.rs │ │ ├── multiplayer_settings.rs │ │ ├── network_chunk_publisher_update.rs │ │ ├── network_settings.rs │ │ ├── network_stack_latency.rs │ │ ├── npc_dialogue.rs │ │ ├── npc_request.rs │ │ ├── on_screen_texture_animation.rs │ │ ├── open_sign.rs │ │ ├── packet_violation_warning.rs │ │ ├── passenger_jump.rs │ │ ├── photo_transfer.rs │ │ ├── play_sound.rs │ │ ├── play_status.rs │ │ ├── player_action.rs │ │ ├── player_armor_damage.rs │ │ ├── player_auth_input.rs │ │ ├── player_enchant_options.rs │ │ ├── player_fog.rs │ │ ├── player_hotbar.rs │ │ ├── player_input.rs │ │ ├── player_list.rs │ │ ├── player_skin.rs │ │ ├── player_start_item_cooldown.rs │ │ ├── player_toggle_crafter_slot_request.rs │ │ ├── player_update_entity_overrides.rs │ │ ├── player_video_capture.rs │ │ ├── position_tracking_db_client_request.rs │ │ ├── position_tracking_db_server_broadcast.rs │ │ ├── purchase_receipt.rs │ │ ├── refresh_entitlements.rs │ │ ├── remove_actor.rs │ │ ├── remove_objective.rs │ │ ├── remove_volume_entity.rs │ │ ├── request_ability.rs │ │ ├── request_chunk_radius.rs │ │ ├── request_network_settings.rs │ │ ├── request_permissions.rs │ │ ├── resource_pack_chunk_data.rs │ │ ├── resource_pack_chunk_request.rs │ │ ├── resource_pack_client_response.rs │ │ ├── resource_pack_data_info.rs │ │ ├── resource_pack_stack.rs │ │ ├── resource_packs_info.rs │ │ ├── respawn.rs │ │ ├── script_message.rs │ │ ├── server_bound_diagnostics.rs │ │ ├── server_bound_loading_screen.rs │ │ ├── server_player_post_move_position.rs │ │ ├── server_settings_request.rs │ │ ├── server_settings_response.rs │ │ ├── server_stats.rs │ │ ├── server_to_client_handshake.rs │ │ ├── set_actor_data.rs │ │ ├── set_actor_link.rs │ │ ├── set_actor_motion.rs │ │ ├── set_commands_enabled.rs │ │ ├── set_default_game_type.rs │ │ ├── set_difficulty.rs │ │ ├── set_display_objective.rs │ │ ├── set_health.rs │ │ ├── set_hud.rs │ │ ├── set_last_hurt_by.rs │ │ ├── set_local_player_as_initialized.rs │ │ ├── set_movement_authority.rs │ │ ├── set_player_game_type.rs │ │ ├── set_player_inventory_options.rs │ │ ├── set_score.rs │ │ ├── set_scoreboard_identity.rs │ │ ├── set_spawn_position.rs │ │ ├── set_time.rs │ │ ├── set_title.rs │ │ ├── settings_command.rs │ │ ├── show_credits.rs │ │ ├── show_profile.rs │ │ ├── show_store_offer.rs │ │ ├── simple_event.rs │ │ ├── simulation_type.rs │ │ ├── spawn_experience_orb.rs │ │ ├── spawn_particle_effect.rs │ │ ├── start_game.rs │ │ ├── stop_sound.rs │ │ ├── structure_block_update.rs │ │ ├── structure_data_request.rs │ │ ├── structure_data_response.rs │ │ ├── sub_chunk.rs │ │ ├── sub_chunk_request.rs │ │ ├── sub_client_login.rs │ │ ├── sync_actor_property.rs │ │ ├── take_item_actor.rs │ │ ├── text.rs │ │ ├── ticking_area_load_status.rs │ │ ├── toast_request.rs │ │ ├── transfer_player.rs │ │ ├── trim_data.rs │ │ ├── unlocked_recipes.rs │ │ ├── update_abilities.rs │ │ ├── update_adventure_settings.rs │ │ ├── update_attributes.rs │ │ ├── update_block.rs │ │ ├── update_block_synced.rs │ │ ├── update_client_input_locks.rs │ │ ├── update_client_options.rs │ │ ├── update_equip.rs │ │ ├── update_player_game_type.rs │ │ ├── update_soft_enum.rs │ │ ├── update_sub_chunk_blocks.rs │ │ └── update_trade.rs │ │ └── types │ │ ├── actor_link.rs │ │ ├── actor_runtime_id.rs │ │ ├── actor_unique_id.rs │ │ ├── adventure_settings.rs │ │ ├── base_description.rs │ │ ├── base_game_version.rs │ │ ├── block_pos.rs │ │ ├── camera_aim_assist_categories.rs │ │ ├── camera_aim_assist_category.rs │ │ ├── camera_aim_assist_item_settings.rs │ │ ├── camera_aim_assist_preset.rs │ │ ├── camera_aim_assist_preset_definition.rs │ │ ├── camera_aim_assist_priority.rs │ │ ├── camera_instruction.rs │ │ ├── camera_preset.rs │ │ ├── camera_presets.rs │ │ ├── chunk_pos.rs │ │ ├── command_origin_data.rs │ │ ├── container_mix_data_entry.rs │ │ ├── crafting_data_entry.rs │ │ ├── data_item.rs │ │ ├── dimension_definition_group.rs │ │ ├── edu_shared_uri_resource.rs │ │ ├── education_level_settings.rs │ │ ├── entity_net_id.rs │ │ ├── experiments.rs │ │ ├── full_container_name.rs │ │ ├── game_rules_changed_packet_data.rs │ │ ├── inventory_action.rs │ │ ├── inventory_source.rs │ │ ├── inventory_transaction.rs │ │ ├── item_data.rs │ │ ├── item_enchants.rs │ │ ├── item_instance_user_data.rs │ │ ├── item_stack_request_slot_info.rs │ │ ├── item_stack_response_container_info.rs │ │ ├── item_stack_response_info.rs │ │ ├── item_stack_response_slot_info.rs │ │ ├── level_settings.rs │ │ ├── map_decoration.rs │ │ ├── map_item_tracked_actor_unique_id.rs │ │ ├── material_reducer_data_entry.rs │ │ ├── mod.rs │ │ ├── molang_variable_map.rs │ │ ├── move_actor_absolute_data.rs │ │ ├── move_actor_delta_data.rs │ │ ├── network_block_position.rs │ │ ├── network_item_instance_descriptor.rs │ │ ├── network_item_stack_descriptor.rs │ │ ├── network_permissions.rs │ │ ├── packed_item_use_legacy_inventory_transaction.rs │ │ ├── player_block_action_data.rs │ │ ├── player_block_actions.rs │ │ ├── position_tracking_id.rs │ │ ├── potion_mix_data_entry.rs │ │ ├── property_sync_data.rs │ │ ├── recipe_ingredient.rs │ │ ├── recipe_unlocking_requirement.rs │ │ ├── scoreboard_id.rs │ │ ├── serialized_abilities_data.rs │ │ ├── serialized_skin.rs │ │ ├── shaped_chemistry_recipe.rs │ │ ├── shaped_recipe.rs │ │ ├── shapeless_chemistry_recipe.rs │ │ ├── shapeless_recipe.rs │ │ ├── shulker_box_recipe.rs │ │ ├── smithing_transform_recipe.rs │ │ ├── smithing_trim_recipe.rs │ │ ├── spawn_settings.rs │ │ ├── structure_editor_data.rs │ │ ├── structure_settings.rs │ │ ├── sub_chunk_pos.rs │ │ ├── sub_chunk_pos_offset.rs │ │ ├── synced_player_movement_settings.rs │ │ └── web_socket_packet_data.rs ├── proto_core │ ├── Cargo.toml │ └── src │ │ ├── endian.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── sub_client.rs │ │ └── types │ │ ├── bool.rs │ │ ├── int.rs │ │ ├── mod.rs │ │ ├── option.rs │ │ ├── slice.rs │ │ ├── string.rs │ │ ├── tuple.rs │ │ ├── uuid.rs │ │ ├── vec.rs │ │ └── xuid.rs ├── server │ ├── Cargo.toml │ └── src │ │ ├── ecs │ │ ├── components │ │ │ ├── connected.rs │ │ │ ├── damage.rs │ │ │ ├── health.rs │ │ │ ├── mod.rs │ │ │ ├── position.rs │ │ │ └── velocity.rs │ │ ├── mod.rs │ │ └── systems │ │ │ ├── death.rs │ │ │ └── mod.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── login │ │ ├── handler.rs │ │ └── mod.rs │ │ └── server │ │ ├── builder.rs │ │ └── mod.rs └── shared │ ├── Cargo.toml │ └── src │ ├── actor_runtime_id.rs │ ├── actor_unique_id.rs │ ├── lib.rs │ └── world │ ├── difficulty.rs │ ├── dimension.rs │ ├── editor_world_type.rs │ ├── gamemode.rs │ ├── generator_type.rs │ ├── mod.rs │ └── permissions_level.rs ├── examples ├── common │ ├── logger.rs │ └── mod.rs ├── proto │ └── server.rs └── proto_parsing.rs └── src └── lib.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/README.md -------------------------------------------------------------------------------- /crates/addon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/Cargo.toml -------------------------------------------------------------------------------- /crates/addon/src/behavior/blocks/components/mod.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/addon/src/behavior/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/behavior/blocks/mod.rs -------------------------------------------------------------------------------- /crates/addon/src/behavior/blocks/traits/mod.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/addon/src/behavior/items/components/mod.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/addon/src/behavior/items/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/behavior/items/mod.rs -------------------------------------------------------------------------------- /crates/addon/src/behavior/menu_category.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/behavior/menu_category.rs -------------------------------------------------------------------------------- /crates/addon/src/behavior/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/behavior/mod.rs -------------------------------------------------------------------------------- /crates/addon/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/error.rs -------------------------------------------------------------------------------- /crates/addon/src/identifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/identifier.rs -------------------------------------------------------------------------------- /crates/addon/src/language/code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/language/code.rs -------------------------------------------------------------------------------- /crates/addon/src/language/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/language/mod.rs -------------------------------------------------------------------------------- /crates/addon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/lib.rs -------------------------------------------------------------------------------- /crates/addon/src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/manifest.rs -------------------------------------------------------------------------------- /crates/addon/src/resource/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/resource/mod.rs -------------------------------------------------------------------------------- /crates/addon/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/addon/src/version.rs -------------------------------------------------------------------------------- /crates/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/core/Cargo.toml -------------------------------------------------------------------------------- /crates/core/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/form/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/Cargo.toml -------------------------------------------------------------------------------- /crates/form/src/elems/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/button.rs -------------------------------------------------------------------------------- /crates/form/src/elems/dropdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/dropdown.rs -------------------------------------------------------------------------------- /crates/form/src/elems/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/input.rs -------------------------------------------------------------------------------- /crates/form/src/elems/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/label.rs -------------------------------------------------------------------------------- /crates/form/src/elems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/mod.rs -------------------------------------------------------------------------------- /crates/form/src/elems/slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/slider.rs -------------------------------------------------------------------------------- /crates/form/src/elems/step_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/step_slider.rs -------------------------------------------------------------------------------- /crates/form/src/elems/toggle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/elems/toggle.rs -------------------------------------------------------------------------------- /crates/form/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/error.rs -------------------------------------------------------------------------------- /crates/form/src/forms/custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/forms/custom.rs -------------------------------------------------------------------------------- /crates/form/src/forms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/forms/mod.rs -------------------------------------------------------------------------------- /crates/form/src/forms/modal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/forms/modal.rs -------------------------------------------------------------------------------- /crates/form/src/forms/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/forms/simple.rs -------------------------------------------------------------------------------- /crates/form/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/form/src/lib.rs -------------------------------------------------------------------------------- /crates/level/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/Cargo.toml -------------------------------------------------------------------------------- /crates/level/src/level/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/chunk.rs -------------------------------------------------------------------------------- /crates/level/src/level/chunk_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/chunk_cache.rs -------------------------------------------------------------------------------- /crates/level/src/level/db_interface/bedrock_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/db_interface/bedrock_key.rs -------------------------------------------------------------------------------- /crates/level/src/level/db_interface/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/db_interface/db.rs -------------------------------------------------------------------------------- /crates/level/src/level/db_interface/key_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/db_interface/key_level.rs -------------------------------------------------------------------------------- /crates/level/src/level/db_interface/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/db_interface/mod.rs -------------------------------------------------------------------------------- /crates/level/src/level/db_interface/rusty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/db_interface/rusty.rs -------------------------------------------------------------------------------- /crates/level/src/level/file_interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/file_interface.rs -------------------------------------------------------------------------------- /crates/level/src/level/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/level.rs -------------------------------------------------------------------------------- /crates/level/src/level/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/mod.rs -------------------------------------------------------------------------------- /crates/level/src/level/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/sub_chunk.rs -------------------------------------------------------------------------------- /crates/level/src/level/world_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/level/world_block.rs -------------------------------------------------------------------------------- /crates/level/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/lib.rs -------------------------------------------------------------------------------- /crates/level/src/types/clear_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/types/clear_cache.rs -------------------------------------------------------------------------------- /crates/level/src/types/miner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/types/miner.rs -------------------------------------------------------------------------------- /crates/level/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/src/types/mod.rs -------------------------------------------------------------------------------- /crates/level/test_level/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/level/test_level/LOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/level/test_level/db/000010.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/000010.ldb -------------------------------------------------------------------------------- /crates/level/test_level/db/000012.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/000012.log -------------------------------------------------------------------------------- /crates/level/test_level/db/000013.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/000013.ldb -------------------------------------------------------------------------------- /crates/level/test_level/db/CURRENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/CURRENT -------------------------------------------------------------------------------- /crates/level/test_level/db/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/level/test_level/db/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/LOG -------------------------------------------------------------------------------- /crates/level/test_level/db/LOG.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/LOG.old -------------------------------------------------------------------------------- /crates/level/test_level/db/MANIFEST-000007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/db/MANIFEST-000007 -------------------------------------------------------------------------------- /crates/level/test_level/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/level.dat -------------------------------------------------------------------------------- /crates/level/test_level/levelname.txt: -------------------------------------------------------------------------------- 1 | My World -------------------------------------------------------------------------------- /crates/level/test_level/world_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/test_level/world_icon.jpeg -------------------------------------------------------------------------------- /crates/level/tests/api_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/level/tests/api_test.rs -------------------------------------------------------------------------------- /crates/macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/macros/Cargo.toml -------------------------------------------------------------------------------- /crates/macros/src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/macros/src/attr.rs -------------------------------------------------------------------------------- /crates/macros/src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/macros/src/de.rs -------------------------------------------------------------------------------- /crates/macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/macros/src/lib.rs -------------------------------------------------------------------------------- /crates/macros/src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/macros/src/ser.rs -------------------------------------------------------------------------------- /crates/macros/src/size.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/proto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/Cargo.toml -------------------------------------------------------------------------------- /crates/proto/src/codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/codec.rs -------------------------------------------------------------------------------- /crates/proto/src/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/compression.rs -------------------------------------------------------------------------------- /crates/proto/src/connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/connection/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/connection/shard/arc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/connection/shard/arc.rs -------------------------------------------------------------------------------- /crates/proto/src/connection/shard/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/connection/shard/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/connection/shard/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/connection/shard/task.rs -------------------------------------------------------------------------------- /crates/proto/src/encryption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/encryption.rs -------------------------------------------------------------------------------- /crates/proto/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/error.rs -------------------------------------------------------------------------------- /crates/proto/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/info.rs -------------------------------------------------------------------------------- /crates/proto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/lib.rs -------------------------------------------------------------------------------- /crates/proto/src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/listener.rs -------------------------------------------------------------------------------- /crates/proto/src/transport/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/transport/connection.rs -------------------------------------------------------------------------------- /crates/proto/src/transport/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/transport/listener.rs -------------------------------------------------------------------------------- /crates/proto/src/transport/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/transport/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/actor_data_ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/actor_data_ids.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/animation_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/animation_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/build_platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/build_platform.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/container_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/container_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/crafting_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/crafting_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/data_item_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/data_item_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/generator_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/generator_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/hud_visibility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/hud_visibility.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 662; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v662/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/tick_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/tick_sync.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v662/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v662/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 671; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v671/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/tick_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/tick_sync.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v671/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v671/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 685; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v685/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v685/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v685/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 686; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v686/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v686/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v686/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 712; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v712/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v712/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v712/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 729; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v729/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v729/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v729/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 748; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v748/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v748/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v748/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 766; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v766/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v766/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v766/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/item_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/item_version.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 776; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v776/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v776/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v776/types/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/actor_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/actor_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/actor_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/actor_flags.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/actor_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/actor_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/container_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/container_id.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/difficulty.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/easing_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/easing_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/enchant_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/enchant_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/game_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/hud_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/hud_element.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/input_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/input_mode.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/item_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/item_version.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/level_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/mirror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/mirror.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/pack_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/pack_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/persona.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/persona.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/photo_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/photo_type.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/play_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/play_status.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/rotation.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/enums/ui_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/enums/ui_profile.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/gamepackets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/gamepackets.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/helper.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/info.rs: -------------------------------------------------------------------------------- 1 | pub const PROTOCOL_VERSION: i32 = 786; 2 | -------------------------------------------------------------------------------- /crates/proto/src/version/v786/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/add_actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/add_actor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/add_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/add_player.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/animate.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/book_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/book_edit.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/boss_event.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/camera.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/death_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/death_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/debug_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/debug_info.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/disconnect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/emote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/emote.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/emote_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/emote_list.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/hurt_armor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/hurt_armor.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/interact.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/lab_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/lab_table.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/login.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/mob_effect.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/mod.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/open_sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/open_sign.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/play_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/play_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/player_fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/player_fog.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/respawn.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/set_health.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/set_hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/set_hud.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/set_score.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/set_time.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/set_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/set_title.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/start_game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/start_game.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/stop_sound.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/sub_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/sub_chunk.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/text.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/packets/trim_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/packets/trim_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/actor_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/actor_link.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/block_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/chunk_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/chunk_pos.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/data_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/data_item.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/experiments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/experiments.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/item_data.rs -------------------------------------------------------------------------------- /crates/proto/src/version/v786/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto/src/version/v786/types/mod.rs -------------------------------------------------------------------------------- /crates/proto_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/Cargo.toml -------------------------------------------------------------------------------- /crates/proto_core/src/endian.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/endian.rs -------------------------------------------------------------------------------- /crates/proto_core/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/error.rs -------------------------------------------------------------------------------- /crates/proto_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/lib.rs -------------------------------------------------------------------------------- /crates/proto_core/src/sub_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/sub_client.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/bool.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/int.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/mod.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/option.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/slice.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/string.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/tuple.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/uuid.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/vec.rs -------------------------------------------------------------------------------- /crates/proto_core/src/types/xuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/proto_core/src/types/xuid.rs -------------------------------------------------------------------------------- /crates/server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/Cargo.toml -------------------------------------------------------------------------------- /crates/server/src/ecs/components/connected.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/components/connected.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/components/damage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/components/damage.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/components/health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/components/health.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/components/mod.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/components/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/components/position.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/components/velocity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/components/velocity.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/ecs/mod.rs -------------------------------------------------------------------------------- /crates/server/src/ecs/systems/death.rs: -------------------------------------------------------------------------------- 1 | pub fn death() {} 2 | -------------------------------------------------------------------------------- /crates/server/src/ecs/systems/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod death; 2 | -------------------------------------------------------------------------------- /crates/server/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/error.rs -------------------------------------------------------------------------------- /crates/server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/lib.rs -------------------------------------------------------------------------------- /crates/server/src/login/handler.rs: -------------------------------------------------------------------------------- 1 | pub trait LoginHandler {} 2 | -------------------------------------------------------------------------------- /crates/server/src/login/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/login/mod.rs -------------------------------------------------------------------------------- /crates/server/src/server/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/server/builder.rs -------------------------------------------------------------------------------- /crates/server/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/server/src/server/mod.rs -------------------------------------------------------------------------------- /crates/shared/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/Cargo.toml -------------------------------------------------------------------------------- /crates/shared/src/actor_runtime_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/actor_runtime_id.rs -------------------------------------------------------------------------------- /crates/shared/src/actor_unique_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/actor_unique_id.rs -------------------------------------------------------------------------------- /crates/shared/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/lib.rs -------------------------------------------------------------------------------- /crates/shared/src/world/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/difficulty.rs -------------------------------------------------------------------------------- /crates/shared/src/world/dimension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/dimension.rs -------------------------------------------------------------------------------- /crates/shared/src/world/editor_world_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/editor_world_type.rs -------------------------------------------------------------------------------- /crates/shared/src/world/gamemode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/gamemode.rs -------------------------------------------------------------------------------- /crates/shared/src/world/generator_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/generator_type.rs -------------------------------------------------------------------------------- /crates/shared/src/world/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/mod.rs -------------------------------------------------------------------------------- /crates/shared/src/world/permissions_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/crates/shared/src/world/permissions_level.rs -------------------------------------------------------------------------------- /examples/common/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/examples/common/logger.rs -------------------------------------------------------------------------------- /examples/common/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod logger; 2 | -------------------------------------------------------------------------------- /examples/proto/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/examples/proto/server.rs -------------------------------------------------------------------------------- /examples/proto_parsing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/examples/proto_parsing.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-crustaceans/bedrock-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------