├── .cargo └── config_fast_builds.toml ├── .envrc ├── .github ├── FUNDING.yml └── workflows │ ├── check.yml │ └── doc.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── azalea-auth ├── Cargo.toml ├── README.md ├── examples │ ├── auth.rs │ ├── auth_manual.rs │ └── certificates.rs └── src │ ├── auth.rs │ ├── cache.rs │ ├── certs.rs │ ├── game_profile.rs │ ├── lib.rs │ ├── offline.rs │ └── sessionserver.rs ├── azalea-block ├── .gitignore ├── Cargo.toml ├── README.md ├── azalea-block-macros │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── property │ │ ├── generate.rs │ │ ├── mod.rs │ │ └── parse.rs │ │ └── utils.rs └── src │ ├── behavior.rs │ ├── block_state.rs │ ├── fluid_state.rs │ ├── generated.rs │ ├── lib.rs │ └── range.rs ├── azalea-brigadier ├── Cargo.toml ├── README.md ├── src │ ├── arguments │ │ ├── argument_type.rs │ │ ├── bool_argument_type.rs │ │ ├── double_argument_type.rs │ │ ├── float_argument_type.rs │ │ ├── integer_argument_type.rs │ │ ├── long_argument_type.rs │ │ ├── mod.rs │ │ └── string_argument_type.rs │ ├── builder │ │ ├── argument_builder.rs │ │ ├── literal_argument_builder.rs │ │ ├── mod.rs │ │ └── required_argument_builder.rs │ ├── command_dispatcher.rs │ ├── context │ │ ├── command_context.rs │ │ ├── command_context_builder.rs │ │ ├── context_chain.rs │ │ ├── mod.rs │ │ ├── parsed_argument.rs │ │ ├── parsed_command_node.rs │ │ ├── string_range.rs │ │ └── suggestion_context.rs │ ├── errors │ │ ├── builtin_errors.rs │ │ ├── command_syntax_error.rs │ │ └── mod.rs │ ├── lib.rs │ ├── modifier.rs │ ├── parse_results.rs │ ├── result_consumer.rs │ ├── string_reader.rs │ ├── suggestion │ │ ├── mod.rs │ │ ├── suggestion_provider.rs │ │ ├── suggestions.rs │ │ └── suggestions_builder.rs │ └── tree │ │ └── mod.rs └── tests │ ├── arguments │ ├── bool_argument_type_test.rs │ ├── double_argument_type_test.rs │ ├── float_argument_type_test.rs │ ├── integer_argument_type_test.rs │ ├── long_argument_type_test.rs │ ├── mod.rs │ └── string_argument_type_test.rs │ ├── bevy_app_usage.rs │ ├── builder │ ├── argument_builder_test.rs │ ├── literal_argument_builder_test.rs │ ├── mod.rs │ └── required_argument_builder_test.rs │ ├── command_dispatcher_test.rs │ ├── command_dispatcher_usages_test.rs │ ├── command_suggestions_test.rs │ ├── context │ ├── command_context_test.rs │ ├── mod.rs │ └── parsed_argument_test.rs │ ├── exceptions │ ├── dynamic_command_syntax_exception_type_test.rs │ ├── mod.rs │ └── simple_command_syntax_exception_type_test.rs │ ├── mod.rs │ ├── string_reader_test.rs │ ├── suggestion │ ├── mod.rs │ ├── suggestion_test.rs │ ├── suggestions_builder_test.rs │ └── suggestions_test.rs │ └── tree │ ├── abstract_command_node_test.rs │ ├── argument_command_node_test.rs │ ├── literal_command_node_test.rs │ ├── mod.rs │ └── root_command_node_test.rs ├── azalea-buf ├── Cargo.toml ├── README.md ├── azalea-buf-macros │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── lib.rs │ │ ├── read.rs │ │ └── write.rs └── src │ ├── definitions.rs │ ├── lib.rs │ ├── read.rs │ ├── serializable_uuid.rs │ └── write.rs ├── azalea-chat ├── Cargo.toml ├── README.md ├── src │ ├── base_component.rs │ ├── click_event.rs │ ├── component.rs │ ├── hover_event.rs │ ├── lib.rs │ ├── numbers.rs │ ├── style.rs │ ├── text_component.rs │ └── translatable_component.rs └── tests │ └── integration_test.rs ├── azalea-client ├── Cargo.toml ├── README.md ├── src │ ├── account.rs │ ├── client.rs │ ├── entity_query.rs │ ├── lib.rs │ ├── local_player.rs │ ├── ping.rs │ ├── player.rs │ ├── plugins │ │ ├── attack.rs │ │ ├── auto_reconnect.rs │ │ ├── block_update.rs │ │ ├── brand.rs │ │ ├── chat │ │ │ ├── handler.rs │ │ │ └── mod.rs │ │ ├── chat_signing.rs │ │ ├── chunks.rs │ │ ├── client_information.rs │ │ ├── connection.rs │ │ ├── disconnect.rs │ │ ├── events.rs │ │ ├── interact │ │ │ ├── mod.rs │ │ │ └── pick.rs │ │ ├── inventory.rs │ │ ├── join.rs │ │ ├── loading.rs │ │ ├── login.rs │ │ ├── mining.rs │ │ ├── mod.rs │ │ ├── movement.rs │ │ ├── packet │ │ │ ├── config │ │ │ │ ├── events.rs │ │ │ │ └── mod.rs │ │ │ ├── game │ │ │ │ ├── events.rs │ │ │ │ └── mod.rs │ │ │ ├── login │ │ │ │ ├── events.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── pong.rs │ │ ├── respawn.rs │ │ ├── task_pool.rs │ │ ├── tick_broadcast.rs │ │ ├── tick_counter.rs │ │ └── tick_end.rs │ └── test_utils │ │ ├── mod.rs │ │ ├── simulation.rs │ │ └── tracing.rs └── tests │ ├── change_dimension_to_nether_and_back.rs │ ├── client_disconnect.rs │ ├── close_open_container.rs │ ├── correct_movement.rs │ ├── correct_sneak_movement.rs │ ├── correct_sprint_sneak_movement.rs │ ├── despawn_entities_when_changing_dimension.rs │ ├── fast_login.rs │ ├── login_to_dimension_with_same_name.rs │ ├── mine_block_rollback.rs │ ├── mine_block_timing.rs │ ├── mine_block_without_rollback.rs │ ├── move_and_despawn_entity.rs │ ├── move_despawned_entity.rs │ ├── packet_order.rs │ ├── packet_order_set_carried_item.rs │ ├── receive_spawn_entity_and_start_config_packet.rs │ ├── receive_start_config_packet.rs │ ├── reply_to_ping_with_pong.rs │ ├── set_health_before_login.rs │ ├── teleport_movement.rs │ └── ticks_alive.rs ├── azalea-core ├── Cargo.toml ├── README.md └── src │ ├── aabb.rs │ ├── bitset.rs │ ├── checksum.rs │ ├── codec_utils.rs │ ├── color.rs │ ├── cursor3d.rs │ ├── data_registry.rs │ ├── delta.rs │ ├── difficulty.rs │ ├── direction.rs │ ├── filterable.rs │ ├── game_type.rs │ ├── hit_result.rs │ ├── lib.rs │ ├── math.rs │ ├── objectives.rs │ ├── position.rs │ ├── registry_holder.rs │ ├── resource_location.rs │ ├── sound.rs │ ├── tick.rs │ └── tier.rs ├── azalea-crypto ├── Cargo.toml ├── README.md ├── benches │ └── my_benchmark.rs └── src │ ├── lib.rs │ └── signing.rs ├── azalea-entity ├── Cargo.toml └── src │ ├── attributes.rs │ ├── data.rs │ ├── dimensions.rs │ ├── effects.rs │ ├── enchantments.rs │ ├── lib.rs │ ├── metadata.rs │ ├── mining.rs │ ├── particle.rs │ ├── plugin │ ├── indexing.rs │ ├── mod.rs │ └── relative_updates.rs │ └── vec_delta_codec.rs ├── azalea-graphics ├── Cargo.toml ├── build.rs ├── examples │ └── renderbot.rs ├── shaders │ ├── Cargo.toml │ └── src │ │ ├── debug.rs │ │ ├── hiz.rs │ │ ├── lib.rs │ │ ├── terrain.rs │ │ ├── ui.rs │ │ └── visibility.rs └── src │ ├── app │ └── mod.rs │ ├── lib.rs │ ├── plugin.rs │ └── renderer │ ├── camera.rs │ ├── chunk.rs │ ├── frame_ctx.rs │ ├── mesh.rs │ ├── mod.rs │ ├── timings.rs │ ├── ui │ ├── mod.rs │ ├── painter.rs │ ├── passes.rs │ └── pipelines.rs │ ├── vulkan │ ├── buffer.rs │ ├── context.rs │ ├── frame_sync.rs │ ├── image.rs │ ├── mod.rs │ ├── object.rs │ ├── swapchain.rs │ ├── texture.rs │ └── timestamp.rs │ └── world_renderer │ ├── aabb_renderer.rs │ ├── animation.rs │ ├── descriptors.rs │ ├── hiz.rs │ ├── mesher │ ├── block.rs │ ├── block_colors.rs │ ├── helpers.rs │ ├── mod.rs │ └── water.rs │ ├── meshes.rs │ ├── mod.rs │ ├── pipelines.rs │ ├── render_targets.rs │ ├── types.rs │ └── visibility │ ├── buffers.rs │ ├── compute.rs │ └── mod.rs ├── azalea-inventory ├── Cargo.toml ├── azalea-inventory-macros │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── location_enum.rs │ │ ├── menu_enum.rs │ │ ├── menu_impl.rs │ │ ├── parse_macro.rs │ │ └── utils.rs ├── src │ ├── components │ │ ├── mod.rs │ │ └── profile.rs │ ├── default_components │ │ ├── generated.rs │ │ └── mod.rs │ ├── item │ │ ├── consume_effect.rs │ │ └── mod.rs │ ├── lib.rs │ ├── operations.rs │ └── slot.rs └── tests │ └── components.rs ├── azalea-language ├── Cargo.toml ├── README.md └── src │ ├── en_us.json │ └── lib.rs ├── azalea-physics ├── Cargo.toml ├── README.md ├── src │ ├── clip.rs │ ├── collision │ │ ├── blocks.rs │ │ ├── discrete_voxel_shape.rs │ │ ├── entity_collisions.rs │ │ ├── mergers.rs │ │ ├── mod.rs │ │ ├── shape.rs │ │ └── world_collisions.rs │ ├── fluids.rs │ ├── lib.rs │ ├── local_player.rs │ └── travel.rs └── tests │ └── physics.rs ├── azalea-protocol ├── Cargo.toml ├── README.md ├── azalea-protocol-macros │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── examples │ └── handshake_proxy.rs └── src │ ├── common │ ├── client_information.rs │ ├── debug_subscription.rs │ ├── mod.rs │ ├── movements.rs │ ├── recipe.rs │ ├── server_links.rs │ └── tags.rs │ ├── connect.rs │ ├── lib.rs │ ├── packets │ ├── common.rs │ ├── config │ │ ├── c_clear_dialog.rs │ │ ├── c_code_of_conduct.rs │ │ ├── c_cookie_request.rs │ │ ├── c_custom_payload.rs │ │ ├── c_custom_report_details.rs │ │ ├── c_disconnect.rs │ │ ├── c_finish_configuration.rs │ │ ├── c_keep_alive.rs │ │ ├── c_ping.rs │ │ ├── c_registry_data.rs │ │ ├── c_reset_chat.rs │ │ ├── c_resource_pack_pop.rs │ │ ├── c_resource_pack_push.rs │ │ ├── c_select_known_packs.rs │ │ ├── c_server_links.rs │ │ ├── c_show_dialog.rs │ │ ├── c_store_cookie.rs │ │ ├── c_transfer.rs │ │ ├── c_update_enabled_features.rs │ │ ├── c_update_tags.rs │ │ ├── mod.rs │ │ ├── s_accept_code_of_conduct.rs │ │ ├── s_client_information.rs │ │ ├── s_cookie_response.rs │ │ ├── s_custom_click_action.rs │ │ ├── s_custom_payload.rs │ │ ├── s_finish_configuration.rs │ │ ├── s_keep_alive.rs │ │ ├── s_pong.rs │ │ ├── s_resource_pack.rs │ │ └── s_select_known_packs.rs │ ├── game │ │ ├── c_add_entity.rs │ │ ├── c_animate.rs │ │ ├── c_award_stats.rs │ │ ├── c_block_changed_ack.rs │ │ ├── c_block_destruction.rs │ │ ├── c_block_entity_data.rs │ │ ├── c_block_event.rs │ │ ├── c_block_update.rs │ │ ├── c_boss_event.rs │ │ ├── c_bundle_delimiter.rs │ │ ├── c_change_difficulty.rs │ │ ├── c_chunk_batch_finished.rs │ │ ├── c_chunk_batch_start.rs │ │ ├── c_chunks_biomes.rs │ │ ├── c_clear_dialog.rs │ │ ├── c_clear_titles.rs │ │ ├── c_command_suggestions.rs │ │ ├── c_commands.rs │ │ ├── c_container_close.rs │ │ ├── c_container_set_content.rs │ │ ├── c_container_set_data.rs │ │ ├── c_container_set_slot.rs │ │ ├── c_cookie_request.rs │ │ ├── c_cooldown.rs │ │ ├── c_custom_chat_completions.rs │ │ ├── c_custom_payload.rs │ │ ├── c_custom_report_details.rs │ │ ├── c_damage_event.rs │ │ ├── c_debug_block_value.rs │ │ ├── c_debug_chunk_value.rs │ │ ├── c_debug_entity_value.rs │ │ ├── c_debug_event.rs │ │ ├── c_debug_sample.rs │ │ ├── c_delete_chat.rs │ │ ├── c_disconnect.rs │ │ ├── c_disguised_chat.rs │ │ ├── c_entity_event.rs │ │ ├── c_entity_position_sync.rs │ │ ├── c_explode.rs │ │ ├── c_forget_level_chunk.rs │ │ ├── c_game_event.rs │ │ ├── c_game_test_highlight_pos.rs │ │ ├── c_horse_screen_open.rs │ │ ├── c_hurt_animation.rs │ │ ├── c_initialize_border.rs │ │ ├── c_keep_alive.rs │ │ ├── c_level_chunk_with_light.rs │ │ ├── c_level_event.rs │ │ ├── c_level_particles.rs │ │ ├── c_light_update.rs │ │ ├── c_login.rs │ │ ├── c_map_item_data.rs │ │ ├── c_merchant_offers.rs │ │ ├── c_move_entity_pos.rs │ │ ├── c_move_entity_pos_rot.rs │ │ ├── c_move_entity_rot.rs │ │ ├── c_move_minecart_along_track.rs │ │ ├── c_move_vehicle.rs │ │ ├── c_open_book.rs │ │ ├── c_open_screen.rs │ │ ├── c_open_sign_editor.rs │ │ ├── c_ping.rs │ │ ├── c_place_ghost_recipe.rs │ │ ├── c_player_abilities.rs │ │ ├── c_player_chat.rs │ │ ├── c_player_combat_end.rs │ │ ├── c_player_combat_enter.rs │ │ ├── c_player_combat_kill.rs │ │ ├── c_player_info_remove.rs │ │ ├── c_player_info_update.rs │ │ ├── c_player_look_at.rs │ │ ├── c_player_position.rs │ │ ├── c_player_rotation.rs │ │ ├── c_pong_response.rs │ │ ├── c_projectile_power.rs │ │ ├── c_recipe_book_add.rs │ │ ├── c_recipe_book_remove.rs │ │ ├── c_recipe_book_settings.rs │ │ ├── c_remove_entities.rs │ │ ├── c_remove_mob_effect.rs │ │ ├── c_reset_score.rs │ │ ├── c_resource_pack_pop.rs │ │ ├── c_resource_pack_push.rs │ │ ├── c_respawn.rs │ │ ├── c_rotate_head.rs │ │ ├── c_section_blocks_update.rs │ │ ├── c_select_advancements_tab.rs │ │ ├── c_server_data.rs │ │ ├── c_server_links.rs │ │ ├── c_set_action_bar_text.rs │ │ ├── c_set_border_center.rs │ │ ├── c_set_border_lerp_size.rs │ │ ├── c_set_border_size.rs │ │ ├── c_set_border_warning_delay.rs │ │ ├── c_set_border_warning_distance.rs │ │ ├── c_set_camera.rs │ │ ├── c_set_chunk_cache_center.rs │ │ ├── c_set_chunk_cache_radius.rs │ │ ├── c_set_cursor_item.rs │ │ ├── c_set_default_spawn_position.rs │ │ ├── c_set_display_objective.rs │ │ ├── c_set_entity_data.rs │ │ ├── c_set_entity_link.rs │ │ ├── c_set_entity_motion.rs │ │ ├── c_set_equipment.rs │ │ ├── c_set_experience.rs │ │ ├── c_set_health.rs │ │ ├── c_set_held_slot.rs │ │ ├── c_set_objective.rs │ │ ├── c_set_passengers.rs │ │ ├── c_set_player_inventory.rs │ │ ├── c_set_player_team.rs │ │ ├── c_set_score.rs │ │ ├── c_set_simulation_distance.rs │ │ ├── c_set_subtitle_text.rs │ │ ├── c_set_time.rs │ │ ├── c_set_title_text.rs │ │ ├── c_set_titles_animation.rs │ │ ├── c_show_dialog.rs │ │ ├── c_sound.rs │ │ ├── c_sound_entity.rs │ │ ├── c_start_configuration.rs │ │ ├── c_stop_sound.rs │ │ ├── c_store_cookie.rs │ │ ├── c_system_chat.rs │ │ ├── c_tab_list.rs │ │ ├── c_tag_query.rs │ │ ├── c_take_item_entity.rs │ │ ├── c_teleport_entity.rs │ │ ├── c_test_instance_block_status.rs │ │ ├── c_ticking_state.rs │ │ ├── c_ticking_step.rs │ │ ├── c_transfer.rs │ │ ├── c_update_advancements.rs │ │ ├── c_update_attributes.rs │ │ ├── c_update_mob_effect.rs │ │ ├── c_update_recipes.rs │ │ ├── c_update_tags.rs │ │ ├── c_waypoint.rs │ │ ├── mod.rs │ │ ├── s_accept_teleportation.rs │ │ ├── s_block_entity_tag_query.rs │ │ ├── s_bundle_item_selected.rs │ │ ├── s_change_difficulty.rs │ │ ├── s_change_game_mode.rs │ │ ├── s_chat.rs │ │ ├── s_chat_ack.rs │ │ ├── s_chat_command.rs │ │ ├── s_chat_command_signed.rs │ │ ├── s_chat_preview.rs │ │ ├── s_chat_session_update.rs │ │ ├── s_chunk_batch_received.rs │ │ ├── s_client_command.rs │ │ ├── s_client_information.rs │ │ ├── s_client_tick_end.rs │ │ ├── s_command_suggestion.rs │ │ ├── s_configuration_acknowledged.rs │ │ ├── s_container_button_click.rs │ │ ├── s_container_click.rs │ │ ├── s_container_close.rs │ │ ├── s_container_slot_state_changed.rs │ │ ├── s_cookie_response.rs │ │ ├── s_custom_click_action.rs │ │ ├── s_custom_payload.rs │ │ ├── s_debug_subscription_request.rs │ │ ├── s_edit_book.rs │ │ ├── s_entity_tag_query.rs │ │ ├── s_interact.rs │ │ ├── s_jigsaw_generate.rs │ │ ├── s_keep_alive.rs │ │ ├── s_lock_difficulty.rs │ │ ├── s_move_player_pos.rs │ │ ├── s_move_player_pos_rot.rs │ │ ├── s_move_player_rot.rs │ │ ├── s_move_player_status_only.rs │ │ ├── s_move_vehicle.rs │ │ ├── s_paddle_boat.rs │ │ ├── s_pick_item_from_block.rs │ │ ├── s_pick_item_from_entity.rs │ │ ├── s_ping_request.rs │ │ ├── s_place_recipe.rs │ │ ├── s_player_abilities.rs │ │ ├── s_player_action.rs │ │ ├── s_player_command.rs │ │ ├── s_player_input.rs │ │ ├── s_player_loaded.rs │ │ ├── s_pong.rs │ │ ├── s_recipe_book_change_settings.rs │ │ ├── s_recipe_book_seen_recipe.rs │ │ ├── s_rename_item.rs │ │ ├── s_resource_pack.rs │ │ ├── s_seen_advancements.rs │ │ ├── s_select_trade.rs │ │ ├── s_set_beacon.rs │ │ ├── s_set_carried_item.rs │ │ ├── s_set_command_block.rs │ │ ├── s_set_command_minecart.rs │ │ ├── s_set_creative_mode_slot.rs │ │ ├── s_set_jigsaw_block.rs │ │ ├── s_set_structure_block.rs │ │ ├── s_set_test_block.rs │ │ ├── s_sign_update.rs │ │ ├── s_swing.rs │ │ ├── s_teleport_to_entity.rs │ │ ├── s_test_instance_block_action.rs │ │ ├── s_use_item.rs │ │ └── s_use_item_on.rs │ ├── handshake │ │ ├── mod.rs │ │ └── s_intention.rs │ ├── login │ │ ├── c_cookie_request.rs │ │ ├── c_custom_query.rs │ │ ├── c_hello.rs │ │ ├── c_login_compression.rs │ │ ├── c_login_disconnect.rs │ │ ├── c_login_finished.rs │ │ ├── mod.rs │ │ ├── s_cookie_response.rs │ │ ├── s_custom_query_answer.rs │ │ ├── s_hello.rs │ │ ├── s_key.rs │ │ └── s_login_acknowledged.rs │ ├── mod.rs │ └── status │ │ ├── c_pong_response.rs │ │ ├── c_status_response.rs │ │ ├── mod.rs │ │ ├── s_ping_request.rs │ │ └── s_status_request.rs │ ├── read.rs │ ├── resolver.rs │ └── write.rs ├── azalea-registry ├── Cargo.toml ├── README.md ├── azalea-registry-macros │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── src │ ├── data.rs │ ├── extra.rs │ ├── lib.rs │ └── tags │ ├── blocks.rs │ ├── entities.rs │ ├── fluids.rs │ ├── items.rs │ └── mod.rs ├── azalea-world ├── Cargo.toml ├── README.md ├── benches │ └── chunks.rs └── src │ ├── bit_storage.rs │ ├── chunk_storage.rs │ ├── container.rs │ ├── find_blocks.rs │ ├── heightmap.rs │ ├── iterators.rs │ ├── lib.rs │ ├── palette │ ├── container.rs │ ├── mod.rs │ └── tests.rs │ └── world.rs ├── azalea ├── Cargo.toml ├── README.md ├── benches │ ├── checks.rs │ ├── pathfinder.rs │ └── physics.rs ├── build.rs ├── examples │ ├── echo.rs │ ├── nearest_entity.rs │ ├── steal.rs │ ├── testbot │ │ ├── commands.rs │ │ ├── commands │ │ │ ├── combat.rs │ │ │ ├── debug.rs │ │ │ └── movement.rs │ │ ├── killaura.rs │ │ └── main.rs │ └── todo │ │ ├── README.md │ │ ├── craft_dig_straight_down.rs │ │ ├── mine_a_chunk.rs │ │ └── pvp.rs └── src │ ├── accept_resource_packs.rs │ ├── auto_respawn.rs │ ├── auto_tool.rs │ ├── bot.rs │ ├── container.rs │ ├── lib.rs │ ├── nearest_entity.rs │ ├── pathfinder │ ├── astar.rs │ ├── costs.rs │ ├── custom_state.rs │ ├── debug.rs │ ├── extras │ │ └── utils.rs │ ├── goals.rs │ ├── goto_event.rs │ ├── mining.rs │ ├── mod.rs │ ├── moves │ │ ├── basic.rs │ │ ├── mod.rs │ │ └── parkour.rs │ ├── rel_block_pos.rs │ ├── simulation.rs │ ├── tests.rs │ └── world.rs │ ├── prelude.rs │ └── swarm │ ├── chat.rs │ ├── events.rs │ ├── mod.rs │ └── prelude.rs ├── block_lookup.diff ├── codegen ├── .gitignore ├── README.md ├── genassets.py ├── genblocks.py ├── genentities.py ├── genitemcomponents.py ├── genlanguage.py ├── genpackets.py ├── genregistries.py ├── lib │ ├── code │ │ ├── blocks.py │ │ ├── data_components.py │ │ ├── entity.py │ │ ├── inventory.py │ │ ├── language.py │ │ ├── packet.py │ │ ├── registry.py │ │ ├── shapes.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── download.py │ ├── extract.py │ ├── mappings.py │ └── utils.py ├── migrate.py └── newpacket.py ├── flake.lock ├── flake.nix ├── images └── meshing.gif ├── rust-toolchain.toml └── rustfmt.toml /.cargo/config_fast_builds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/.cargo/config_fast_builds.toml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/README.md -------------------------------------------------------------------------------- /azalea-auth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/Cargo.toml -------------------------------------------------------------------------------- /azalea-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/README.md -------------------------------------------------------------------------------- /azalea-auth/examples/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/examples/auth.rs -------------------------------------------------------------------------------- /azalea-auth/examples/auth_manual.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/examples/auth_manual.rs -------------------------------------------------------------------------------- /azalea-auth/examples/certificates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/examples/certificates.rs -------------------------------------------------------------------------------- /azalea-auth/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/auth.rs -------------------------------------------------------------------------------- /azalea-auth/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/cache.rs -------------------------------------------------------------------------------- /azalea-auth/src/certs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/certs.rs -------------------------------------------------------------------------------- /azalea-auth/src/game_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/game_profile.rs -------------------------------------------------------------------------------- /azalea-auth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/lib.rs -------------------------------------------------------------------------------- /azalea-auth/src/offline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/offline.rs -------------------------------------------------------------------------------- /azalea-auth/src/sessionserver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-auth/src/sessionserver.rs -------------------------------------------------------------------------------- /azalea-block/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/.gitignore -------------------------------------------------------------------------------- /azalea-block/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/Cargo.toml -------------------------------------------------------------------------------- /azalea-block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/README.md -------------------------------------------------------------------------------- /azalea-block/azalea-block-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/azalea-block-macros/Cargo.toml -------------------------------------------------------------------------------- /azalea-block/azalea-block-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/azalea-block-macros/src/lib.rs -------------------------------------------------------------------------------- /azalea-block/azalea-block-macros/src/property/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/azalea-block-macros/src/property/generate.rs -------------------------------------------------------------------------------- /azalea-block/azalea-block-macros/src/property/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/azalea-block-macros/src/property/mod.rs -------------------------------------------------------------------------------- /azalea-block/azalea-block-macros/src/property/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/azalea-block-macros/src/property/parse.rs -------------------------------------------------------------------------------- /azalea-block/azalea-block-macros/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/azalea-block-macros/src/utils.rs -------------------------------------------------------------------------------- /azalea-block/src/behavior.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/src/behavior.rs -------------------------------------------------------------------------------- /azalea-block/src/block_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/src/block_state.rs -------------------------------------------------------------------------------- /azalea-block/src/fluid_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/src/fluid_state.rs -------------------------------------------------------------------------------- /azalea-block/src/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/src/generated.rs -------------------------------------------------------------------------------- /azalea-block/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/src/lib.rs -------------------------------------------------------------------------------- /azalea-block/src/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-block/src/range.rs -------------------------------------------------------------------------------- /azalea-brigadier/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/Cargo.toml -------------------------------------------------------------------------------- /azalea-brigadier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/README.md -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/bool_argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/bool_argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/double_argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/double_argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/float_argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/float_argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/integer_argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/integer_argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/long_argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/long_argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/arguments/string_argument_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/arguments/string_argument_type.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/builder/argument_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/builder/argument_builder.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/builder/literal_argument_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/builder/literal_argument_builder.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/builder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/builder/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/builder/required_argument_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/builder/required_argument_builder.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/command_dispatcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/command_dispatcher.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/command_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/command_context.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/command_context_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/command_context_builder.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/context_chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/context_chain.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/parsed_argument.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/parsed_argument.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/parsed_command_node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/parsed_command_node.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/string_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/string_range.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/context/suggestion_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/context/suggestion_context.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/errors/builtin_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/errors/builtin_errors.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/errors/command_syntax_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/errors/command_syntax_error.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/errors/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/errors/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/lib.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/modifier.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/parse_results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/parse_results.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/result_consumer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/result_consumer.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/string_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/string_reader.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/suggestion/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/suggestion/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/suggestion/suggestion_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/suggestion/suggestion_provider.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/suggestion/suggestions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/suggestion/suggestions.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/suggestion/suggestions_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/suggestion/suggestions_builder.rs -------------------------------------------------------------------------------- /azalea-brigadier/src/tree/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/src/tree/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/bool_argument_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/double_argument_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/float_argument_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/integer_argument_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/long_argument_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/arguments/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/arguments/string_argument_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/bevy_app_usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/bevy_app_usage.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/builder/argument_builder_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/builder/argument_builder_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/builder/literal_argument_builder_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/builder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/builder/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/builder/required_argument_builder_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/command_dispatcher_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/command_dispatcher_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/command_dispatcher_usages_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/command_dispatcher_usages_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/command_suggestions_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/command_suggestions_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/context/command_context_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/context/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/context/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/context/parsed_argument_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/exceptions/dynamic_command_syntax_exception_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/exceptions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/exceptions/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/exceptions/simple_command_syntax_exception_type_test.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/string_reader_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/string_reader_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/suggestion/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/suggestion/mod.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/suggestion/suggestion_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/suggestion/suggestion_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/suggestion/suggestions_builder_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/suggestion/suggestions_builder_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/suggestion/suggestions_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-brigadier/tests/suggestion/suggestions_test.rs -------------------------------------------------------------------------------- /azalea-brigadier/tests/tree/abstract_command_node_test.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/tree/argument_command_node_test.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/tree/literal_command_node_test.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/tree/mod.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azalea-brigadier/tests/tree/root_command_node_test.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azalea-buf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/Cargo.toml -------------------------------------------------------------------------------- /azalea-buf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/README.md -------------------------------------------------------------------------------- /azalea-buf/azalea-buf-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/azalea-buf-macros/Cargo.toml -------------------------------------------------------------------------------- /azalea-buf/azalea-buf-macros/README.md: -------------------------------------------------------------------------------- 1 | Only used in azalea-buf. -------------------------------------------------------------------------------- /azalea-buf/azalea-buf-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/azalea-buf-macros/src/lib.rs -------------------------------------------------------------------------------- /azalea-buf/azalea-buf-macros/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/azalea-buf-macros/src/read.rs -------------------------------------------------------------------------------- /azalea-buf/azalea-buf-macros/src/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/azalea-buf-macros/src/write.rs -------------------------------------------------------------------------------- /azalea-buf/src/definitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/src/definitions.rs -------------------------------------------------------------------------------- /azalea-buf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/src/lib.rs -------------------------------------------------------------------------------- /azalea-buf/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/src/read.rs -------------------------------------------------------------------------------- /azalea-buf/src/serializable_uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/src/serializable_uuid.rs -------------------------------------------------------------------------------- /azalea-buf/src/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-buf/src/write.rs -------------------------------------------------------------------------------- /azalea-chat/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/Cargo.toml -------------------------------------------------------------------------------- /azalea-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/README.md -------------------------------------------------------------------------------- /azalea-chat/src/base_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/base_component.rs -------------------------------------------------------------------------------- /azalea-chat/src/click_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/click_event.rs -------------------------------------------------------------------------------- /azalea-chat/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/component.rs -------------------------------------------------------------------------------- /azalea-chat/src/hover_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/hover_event.rs -------------------------------------------------------------------------------- /azalea-chat/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/lib.rs -------------------------------------------------------------------------------- /azalea-chat/src/numbers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/numbers.rs -------------------------------------------------------------------------------- /azalea-chat/src/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/style.rs -------------------------------------------------------------------------------- /azalea-chat/src/text_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/text_component.rs -------------------------------------------------------------------------------- /azalea-chat/src/translatable_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/src/translatable_component.rs -------------------------------------------------------------------------------- /azalea-chat/tests/integration_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-chat/tests/integration_test.rs -------------------------------------------------------------------------------- /azalea-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/Cargo.toml -------------------------------------------------------------------------------- /azalea-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/README.md -------------------------------------------------------------------------------- /azalea-client/src/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/account.rs -------------------------------------------------------------------------------- /azalea-client/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/client.rs -------------------------------------------------------------------------------- /azalea-client/src/entity_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/entity_query.rs -------------------------------------------------------------------------------- /azalea-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/lib.rs -------------------------------------------------------------------------------- /azalea-client/src/local_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/local_player.rs -------------------------------------------------------------------------------- /azalea-client/src/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/ping.rs -------------------------------------------------------------------------------- /azalea-client/src/player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/player.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/attack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/attack.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/auto_reconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/auto_reconnect.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/block_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/block_update.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/brand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/brand.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/chat/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/chat/handler.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/chat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/chat/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/chat_signing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/chat_signing.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/chunks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/chunks.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/client_information.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/client_information.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/connection.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/disconnect.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/events.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/interact/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/interact/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/interact/pick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/interact/pick.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/inventory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/inventory.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/join.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/join.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/loading.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/login.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/mining.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/movement.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/config/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/config/events.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/config/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/game/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/game/events.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/game/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/game/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/login/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/login/events.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/login/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/login/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/packet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/packet/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/pong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/pong.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/respawn.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/task_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/task_pool.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/tick_broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/tick_broadcast.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/tick_counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/tick_counter.rs -------------------------------------------------------------------------------- /azalea-client/src/plugins/tick_end.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/plugins/tick_end.rs -------------------------------------------------------------------------------- /azalea-client/src/test_utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/test_utils/mod.rs -------------------------------------------------------------------------------- /azalea-client/src/test_utils/simulation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/test_utils/simulation.rs -------------------------------------------------------------------------------- /azalea-client/src/test_utils/tracing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/src/test_utils/tracing.rs -------------------------------------------------------------------------------- /azalea-client/tests/change_dimension_to_nether_and_back.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/change_dimension_to_nether_and_back.rs -------------------------------------------------------------------------------- /azalea-client/tests/client_disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/client_disconnect.rs -------------------------------------------------------------------------------- /azalea-client/tests/close_open_container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/close_open_container.rs -------------------------------------------------------------------------------- /azalea-client/tests/correct_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/correct_movement.rs -------------------------------------------------------------------------------- /azalea-client/tests/correct_sneak_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/correct_sneak_movement.rs -------------------------------------------------------------------------------- /azalea-client/tests/correct_sprint_sneak_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/correct_sprint_sneak_movement.rs -------------------------------------------------------------------------------- /azalea-client/tests/despawn_entities_when_changing_dimension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/despawn_entities_when_changing_dimension.rs -------------------------------------------------------------------------------- /azalea-client/tests/fast_login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/fast_login.rs -------------------------------------------------------------------------------- /azalea-client/tests/login_to_dimension_with_same_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/login_to_dimension_with_same_name.rs -------------------------------------------------------------------------------- /azalea-client/tests/mine_block_rollback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/mine_block_rollback.rs -------------------------------------------------------------------------------- /azalea-client/tests/mine_block_timing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/mine_block_timing.rs -------------------------------------------------------------------------------- /azalea-client/tests/mine_block_without_rollback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/mine_block_without_rollback.rs -------------------------------------------------------------------------------- /azalea-client/tests/move_and_despawn_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/move_and_despawn_entity.rs -------------------------------------------------------------------------------- /azalea-client/tests/move_despawned_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/move_despawned_entity.rs -------------------------------------------------------------------------------- /azalea-client/tests/packet_order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/packet_order.rs -------------------------------------------------------------------------------- /azalea-client/tests/packet_order_set_carried_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/packet_order_set_carried_item.rs -------------------------------------------------------------------------------- /azalea-client/tests/receive_spawn_entity_and_start_config_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/receive_spawn_entity_and_start_config_packet.rs -------------------------------------------------------------------------------- /azalea-client/tests/receive_start_config_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/receive_start_config_packet.rs -------------------------------------------------------------------------------- /azalea-client/tests/reply_to_ping_with_pong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/reply_to_ping_with_pong.rs -------------------------------------------------------------------------------- /azalea-client/tests/set_health_before_login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/set_health_before_login.rs -------------------------------------------------------------------------------- /azalea-client/tests/teleport_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/teleport_movement.rs -------------------------------------------------------------------------------- /azalea-client/tests/ticks_alive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-client/tests/ticks_alive.rs -------------------------------------------------------------------------------- /azalea-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/Cargo.toml -------------------------------------------------------------------------------- /azalea-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/README.md -------------------------------------------------------------------------------- /azalea-core/src/aabb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/aabb.rs -------------------------------------------------------------------------------- /azalea-core/src/bitset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/bitset.rs -------------------------------------------------------------------------------- /azalea-core/src/checksum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/checksum.rs -------------------------------------------------------------------------------- /azalea-core/src/codec_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/codec_utils.rs -------------------------------------------------------------------------------- /azalea-core/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/color.rs -------------------------------------------------------------------------------- /azalea-core/src/cursor3d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/cursor3d.rs -------------------------------------------------------------------------------- /azalea-core/src/data_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/data_registry.rs -------------------------------------------------------------------------------- /azalea-core/src/delta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/delta.rs -------------------------------------------------------------------------------- /azalea-core/src/difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/difficulty.rs -------------------------------------------------------------------------------- /azalea-core/src/direction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/direction.rs -------------------------------------------------------------------------------- /azalea-core/src/filterable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/filterable.rs -------------------------------------------------------------------------------- /azalea-core/src/game_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/game_type.rs -------------------------------------------------------------------------------- /azalea-core/src/hit_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/hit_result.rs -------------------------------------------------------------------------------- /azalea-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/lib.rs -------------------------------------------------------------------------------- /azalea-core/src/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/math.rs -------------------------------------------------------------------------------- /azalea-core/src/objectives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/objectives.rs -------------------------------------------------------------------------------- /azalea-core/src/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/position.rs -------------------------------------------------------------------------------- /azalea-core/src/registry_holder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/registry_holder.rs -------------------------------------------------------------------------------- /azalea-core/src/resource_location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/resource_location.rs -------------------------------------------------------------------------------- /azalea-core/src/sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/sound.rs -------------------------------------------------------------------------------- /azalea-core/src/tick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/tick.rs -------------------------------------------------------------------------------- /azalea-core/src/tier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-core/src/tier.rs -------------------------------------------------------------------------------- /azalea-crypto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-crypto/Cargo.toml -------------------------------------------------------------------------------- /azalea-crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-crypto/README.md -------------------------------------------------------------------------------- /azalea-crypto/benches/my_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-crypto/benches/my_benchmark.rs -------------------------------------------------------------------------------- /azalea-crypto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-crypto/src/lib.rs -------------------------------------------------------------------------------- /azalea-crypto/src/signing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-crypto/src/signing.rs -------------------------------------------------------------------------------- /azalea-entity/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/Cargo.toml -------------------------------------------------------------------------------- /azalea-entity/src/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/attributes.rs -------------------------------------------------------------------------------- /azalea-entity/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/data.rs -------------------------------------------------------------------------------- /azalea-entity/src/dimensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/dimensions.rs -------------------------------------------------------------------------------- /azalea-entity/src/effects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/effects.rs -------------------------------------------------------------------------------- /azalea-entity/src/enchantments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/enchantments.rs -------------------------------------------------------------------------------- /azalea-entity/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/lib.rs -------------------------------------------------------------------------------- /azalea-entity/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/metadata.rs -------------------------------------------------------------------------------- /azalea-entity/src/mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/mining.rs -------------------------------------------------------------------------------- /azalea-entity/src/particle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/particle.rs -------------------------------------------------------------------------------- /azalea-entity/src/plugin/indexing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/plugin/indexing.rs -------------------------------------------------------------------------------- /azalea-entity/src/plugin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/plugin/mod.rs -------------------------------------------------------------------------------- /azalea-entity/src/plugin/relative_updates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/plugin/relative_updates.rs -------------------------------------------------------------------------------- /azalea-entity/src/vec_delta_codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-entity/src/vec_delta_codec.rs -------------------------------------------------------------------------------- /azalea-graphics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/Cargo.toml -------------------------------------------------------------------------------- /azalea-graphics/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/build.rs -------------------------------------------------------------------------------- /azalea-graphics/examples/renderbot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/examples/renderbot.rs -------------------------------------------------------------------------------- /azalea-graphics/shaders/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/Cargo.toml -------------------------------------------------------------------------------- /azalea-graphics/shaders/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/src/debug.rs -------------------------------------------------------------------------------- /azalea-graphics/shaders/src/hiz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/src/hiz.rs -------------------------------------------------------------------------------- /azalea-graphics/shaders/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/src/lib.rs -------------------------------------------------------------------------------- /azalea-graphics/shaders/src/terrain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/src/terrain.rs -------------------------------------------------------------------------------- /azalea-graphics/shaders/src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/src/ui.rs -------------------------------------------------------------------------------- /azalea-graphics/shaders/src/visibility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/shaders/src/visibility.rs -------------------------------------------------------------------------------- /azalea-graphics/src/app/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/app/mod.rs -------------------------------------------------------------------------------- /azalea-graphics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/lib.rs -------------------------------------------------------------------------------- /azalea-graphics/src/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/plugin.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/camera.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/chunk.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/frame_ctx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/frame_ctx.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/mesh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/mesh.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/mod.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/timings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/timings.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/ui/mod.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/ui/painter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/ui/painter.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/ui/passes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/ui/passes.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/ui/pipelines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/ui/pipelines.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/buffer.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/context.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/frame_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/frame_sync.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/image.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/mod.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/object.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/swapchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/swapchain.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/texture.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/vulkan/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/vulkan/timestamp.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/aabb_renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/aabb_renderer.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/animation.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/descriptors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/descriptors.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/hiz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/hiz.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/mesher/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/mesher/block.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/mesher/block_colors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/mesher/block_colors.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/mesher/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/mesher/helpers.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/mesher/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/mesher/mod.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/mesher/water.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/mesher/water.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/meshes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/meshes.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/mod.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/pipelines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/pipelines.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/render_targets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/render_targets.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/types.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/visibility/buffers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/visibility/buffers.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/visibility/compute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/visibility/compute.rs -------------------------------------------------------------------------------- /azalea-graphics/src/renderer/world_renderer/visibility/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-graphics/src/renderer/world_renderer/visibility/mod.rs -------------------------------------------------------------------------------- /azalea-inventory/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/Cargo.toml -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/Cargo.toml -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/src/lib.rs -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/src/location_enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/src/location_enum.rs -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/src/menu_enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/src/menu_enum.rs -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/src/menu_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/src/menu_impl.rs -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/src/parse_macro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/src/parse_macro.rs -------------------------------------------------------------------------------- /azalea-inventory/azalea-inventory-macros/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/azalea-inventory-macros/src/utils.rs -------------------------------------------------------------------------------- /azalea-inventory/src/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/components/mod.rs -------------------------------------------------------------------------------- /azalea-inventory/src/components/profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/components/profile.rs -------------------------------------------------------------------------------- /azalea-inventory/src/default_components/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/default_components/generated.rs -------------------------------------------------------------------------------- /azalea-inventory/src/default_components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/default_components/mod.rs -------------------------------------------------------------------------------- /azalea-inventory/src/item/consume_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/item/consume_effect.rs -------------------------------------------------------------------------------- /azalea-inventory/src/item/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/item/mod.rs -------------------------------------------------------------------------------- /azalea-inventory/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/lib.rs -------------------------------------------------------------------------------- /azalea-inventory/src/operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/operations.rs -------------------------------------------------------------------------------- /azalea-inventory/src/slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/src/slot.rs -------------------------------------------------------------------------------- /azalea-inventory/tests/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-inventory/tests/components.rs -------------------------------------------------------------------------------- /azalea-language/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-language/Cargo.toml -------------------------------------------------------------------------------- /azalea-language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-language/README.md -------------------------------------------------------------------------------- /azalea-language/src/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-language/src/en_us.json -------------------------------------------------------------------------------- /azalea-language/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-language/src/lib.rs -------------------------------------------------------------------------------- /azalea-physics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/Cargo.toml -------------------------------------------------------------------------------- /azalea-physics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/README.md -------------------------------------------------------------------------------- /azalea-physics/src/clip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/clip.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/blocks.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/discrete_voxel_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/discrete_voxel_shape.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/entity_collisions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/entity_collisions.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/mergers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/mergers.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/mod.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/shape.rs -------------------------------------------------------------------------------- /azalea-physics/src/collision/world_collisions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/collision/world_collisions.rs -------------------------------------------------------------------------------- /azalea-physics/src/fluids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/fluids.rs -------------------------------------------------------------------------------- /azalea-physics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/lib.rs -------------------------------------------------------------------------------- /azalea-physics/src/local_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/local_player.rs -------------------------------------------------------------------------------- /azalea-physics/src/travel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/src/travel.rs -------------------------------------------------------------------------------- /azalea-physics/tests/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-physics/tests/physics.rs -------------------------------------------------------------------------------- /azalea-protocol/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/Cargo.toml -------------------------------------------------------------------------------- /azalea-protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/README.md -------------------------------------------------------------------------------- /azalea-protocol/azalea-protocol-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/azalea-protocol-macros/Cargo.toml -------------------------------------------------------------------------------- /azalea-protocol/azalea-protocol-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/azalea-protocol-macros/src/lib.rs -------------------------------------------------------------------------------- /azalea-protocol/examples/handshake_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/examples/handshake_proxy.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/client_information.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/client_information.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/debug_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/debug_subscription.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/movements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/movements.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/recipe.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/server_links.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/server_links.rs -------------------------------------------------------------------------------- /azalea-protocol/src/common/tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/common/tags.rs -------------------------------------------------------------------------------- /azalea-protocol/src/connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/connect.rs -------------------------------------------------------------------------------- /azalea-protocol/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/lib.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/common.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_clear_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_clear_dialog.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_code_of_conduct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_code_of_conduct.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_cookie_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_cookie_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_custom_payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_custom_payload.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_custom_report_details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_custom_report_details.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_disconnect.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_finish_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_finish_configuration.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_keep_alive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_keep_alive.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_ping.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_registry_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_registry_data.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_reset_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_reset_chat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_resource_pack_pop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_resource_pack_pop.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_resource_pack_push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_resource_pack_push.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_select_known_packs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_select_known_packs.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_server_links.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_server_links.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_show_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_show_dialog.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_store_cookie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_store_cookie.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_transfer.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_update_enabled_features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_update_enabled_features.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/c_update_tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/c_update_tags.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_accept_code_of_conduct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_accept_code_of_conduct.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_client_information.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_client_information.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_cookie_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_cookie_response.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_custom_click_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_custom_click_action.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_custom_payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_custom_payload.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_finish_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_finish_configuration.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_keep_alive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_keep_alive.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_pong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_pong.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_resource_pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_resource_pack.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/config/s_select_known_packs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/config/s_select_known_packs.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_add_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_add_entity.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_animate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_animate.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_award_stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_award_stats.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_block_changed_ack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_block_changed_ack.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_block_destruction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_block_destruction.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_block_entity_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_block_entity_data.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_block_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_block_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_block_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_block_update.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_boss_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_boss_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_bundle_delimiter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_bundle_delimiter.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_change_difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_change_difficulty.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_chunk_batch_finished.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_chunk_batch_finished.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_chunk_batch_start.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_chunk_batch_start.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_chunks_biomes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_chunks_biomes.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_clear_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_clear_dialog.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_clear_titles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_clear_titles.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_command_suggestions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_command_suggestions.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_commands.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_container_close.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_container_close.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_container_set_content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_container_set_content.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_container_set_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_container_set_data.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_container_set_slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_container_set_slot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_cookie_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_cookie_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_cooldown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_cooldown.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_custom_chat_completions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_custom_chat_completions.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_custom_payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_custom_payload.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_custom_report_details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_custom_report_details.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_damage_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_damage_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_debug_block_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_debug_block_value.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_debug_chunk_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_debug_chunk_value.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_debug_entity_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_debug_entity_value.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_debug_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_debug_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_debug_sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_debug_sample.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_delete_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_delete_chat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_disconnect.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_disguised_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_disguised_chat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_entity_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_entity_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_entity_position_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_entity_position_sync.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_explode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_explode.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_forget_level_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_forget_level_chunk.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_game_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_game_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_game_test_highlight_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_game_test_highlight_pos.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_horse_screen_open.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_horse_screen_open.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_hurt_animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_hurt_animation.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_initialize_border.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_initialize_border.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_keep_alive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_keep_alive.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_level_chunk_with_light.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_level_chunk_with_light.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_level_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_level_event.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_level_particles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_level_particles.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_light_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_light_update.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_login.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_map_item_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_map_item_data.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_merchant_offers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_merchant_offers.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_move_entity_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_move_entity_pos.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_move_entity_pos_rot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_move_entity_pos_rot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_move_entity_rot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_move_entity_rot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_move_minecart_along_track.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_move_minecart_along_track.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_move_vehicle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_move_vehicle.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_open_book.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_open_book.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_open_screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_open_screen.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_open_sign_editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_open_sign_editor.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_ping.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_place_ghost_recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_place_ghost_recipe.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_abilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_abilities.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_chat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_combat_end.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_combat_end.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_combat_enter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_combat_enter.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_combat_kill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_combat_kill.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_info_remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_info_remove.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_info_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_info_update.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_look_at.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_look_at.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_position.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_player_rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_player_rotation.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_pong_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_pong_response.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_projectile_power.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_projectile_power.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_recipe_book_add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_recipe_book_add.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_recipe_book_remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_recipe_book_remove.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_recipe_book_settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_recipe_book_settings.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_remove_entities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_remove_entities.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_remove_mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_remove_mob_effect.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_reset_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_reset_score.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_resource_pack_pop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_resource_pack_pop.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_resource_pack_push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_resource_pack_push.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_respawn.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_rotate_head.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_rotate_head.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_section_blocks_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_section_blocks_update.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_select_advancements_tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_select_advancements_tab.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_server_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_server_data.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_server_links.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_server_links.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_action_bar_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_action_bar_text.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_border_center.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_border_center.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_border_lerp_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_border_lerp_size.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_border_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_border_size.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_border_warning_delay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_border_warning_delay.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_border_warning_distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_border_warning_distance.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_camera.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_chunk_cache_center.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_chunk_cache_center.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_chunk_cache_radius.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_chunk_cache_radius.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_cursor_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_cursor_item.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_default_spawn_position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_default_spawn_position.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_display_objective.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_display_objective.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_entity_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_entity_data.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_entity_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_entity_link.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_entity_motion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_entity_motion.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_equipment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_equipment.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_experience.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_experience.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_health.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_held_slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_held_slot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_objective.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_objective.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_passengers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_passengers.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_player_inventory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_player_inventory.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_player_team.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_player_team.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_score.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_simulation_distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_simulation_distance.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_subtitle_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_subtitle_text.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_time.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_title_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_title_text.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_set_titles_animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_set_titles_animation.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_show_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_show_dialog.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_sound.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_sound_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_sound_entity.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_start_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_start_configuration.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_stop_sound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_stop_sound.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_store_cookie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_store_cookie.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_system_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_system_chat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_tab_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_tab_list.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_tag_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_tag_query.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_take_item_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_take_item_entity.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_teleport_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_teleport_entity.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_test_instance_block_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_test_instance_block_status.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_ticking_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_ticking_state.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_ticking_step.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_ticking_step.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_transfer.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_update_advancements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_update_advancements.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_update_attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_update_attributes.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_update_mob_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_update_mob_effect.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_update_recipes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_update_recipes.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_update_tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_update_tags.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/c_waypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/c_waypoint.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_accept_teleportation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_accept_teleportation.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_block_entity_tag_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_block_entity_tag_query.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_bundle_item_selected.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_bundle_item_selected.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_change_difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_change_difficulty.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_change_game_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_change_game_mode.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chat_ack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chat_ack.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chat_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chat_command.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chat_command_signed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chat_command_signed.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chat_preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chat_preview.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chat_session_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chat_session_update.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_chunk_batch_received.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_chunk_batch_received.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_client_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_client_command.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_client_information.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_client_information.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_client_tick_end.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_client_tick_end.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_command_suggestion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_command_suggestion.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_configuration_acknowledged.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_configuration_acknowledged.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_container_button_click.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_container_button_click.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_container_click.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_container_click.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_container_close.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_container_close.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_container_slot_state_changed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_container_slot_state_changed.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_cookie_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_cookie_response.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_custom_click_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_custom_click_action.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_custom_payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_custom_payload.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_debug_subscription_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_debug_subscription_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_edit_book.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_edit_book.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_entity_tag_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_entity_tag_query.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_interact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_interact.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_jigsaw_generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_jigsaw_generate.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_keep_alive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_keep_alive.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_lock_difficulty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_lock_difficulty.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_move_player_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_move_player_pos.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_move_player_pos_rot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_move_player_pos_rot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_move_player_rot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_move_player_rot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_move_player_status_only.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_move_player_status_only.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_move_vehicle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_move_vehicle.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_paddle_boat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_paddle_boat.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_pick_item_from_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_pick_item_from_block.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_pick_item_from_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_pick_item_from_entity.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_ping_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_ping_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_place_recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_place_recipe.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_player_abilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_player_abilities.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_player_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_player_action.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_player_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_player_command.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_player_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_player_input.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_player_loaded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_player_loaded.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_pong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_pong.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_recipe_book_change_settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_recipe_book_change_settings.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_recipe_book_seen_recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_recipe_book_seen_recipe.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_rename_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_rename_item.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_resource_pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_resource_pack.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_seen_advancements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_seen_advancements.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_select_trade.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_select_trade.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_beacon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_beacon.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_carried_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_carried_item.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_command_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_command_block.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_command_minecart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_command_minecart.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_creative_mode_slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_creative_mode_slot.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_jigsaw_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_jigsaw_block.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_structure_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_structure_block.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_set_test_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_set_test_block.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_sign_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_sign_update.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_swing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_swing.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_teleport_to_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_teleport_to_entity.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_test_instance_block_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_test_instance_block_action.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_use_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_use_item.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/game/s_use_item_on.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/game/s_use_item_on.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/handshake/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/handshake/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/handshake/s_intention.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/handshake/s_intention.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/c_cookie_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/c_cookie_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/c_custom_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/c_custom_query.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/c_hello.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/c_hello.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/c_login_compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/c_login_compression.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/c_login_disconnect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/c_login_disconnect.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/c_login_finished.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/c_login_finished.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/s_cookie_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/s_cookie_response.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/s_custom_query_answer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/s_custom_query_answer.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/s_hello.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/s_hello.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/s_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/s_key.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/login/s_login_acknowledged.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/login/s_login_acknowledged.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/status/c_pong_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/status/c_pong_response.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/status/c_status_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/status/c_status_response.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/status/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/status/mod.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/status/s_ping_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/status/s_ping_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/packets/status/s_status_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/packets/status/s_status_request.rs -------------------------------------------------------------------------------- /azalea-protocol/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/read.rs -------------------------------------------------------------------------------- /azalea-protocol/src/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/resolver.rs -------------------------------------------------------------------------------- /azalea-protocol/src/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-protocol/src/write.rs -------------------------------------------------------------------------------- /azalea-registry/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/Cargo.toml -------------------------------------------------------------------------------- /azalea-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/README.md -------------------------------------------------------------------------------- /azalea-registry/azalea-registry-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/azalea-registry-macros/Cargo.toml -------------------------------------------------------------------------------- /azalea-registry/azalea-registry-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/azalea-registry-macros/src/lib.rs -------------------------------------------------------------------------------- /azalea-registry/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/data.rs -------------------------------------------------------------------------------- /azalea-registry/src/extra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/extra.rs -------------------------------------------------------------------------------- /azalea-registry/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/lib.rs -------------------------------------------------------------------------------- /azalea-registry/src/tags/blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/tags/blocks.rs -------------------------------------------------------------------------------- /azalea-registry/src/tags/entities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/tags/entities.rs -------------------------------------------------------------------------------- /azalea-registry/src/tags/fluids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/tags/fluids.rs -------------------------------------------------------------------------------- /azalea-registry/src/tags/items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/tags/items.rs -------------------------------------------------------------------------------- /azalea-registry/src/tags/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-registry/src/tags/mod.rs -------------------------------------------------------------------------------- /azalea-world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/Cargo.toml -------------------------------------------------------------------------------- /azalea-world/README.md: -------------------------------------------------------------------------------- 1 | The Minecraft world representation used in Azalea. 2 | -------------------------------------------------------------------------------- /azalea-world/benches/chunks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/benches/chunks.rs -------------------------------------------------------------------------------- /azalea-world/src/bit_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/bit_storage.rs -------------------------------------------------------------------------------- /azalea-world/src/chunk_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/chunk_storage.rs -------------------------------------------------------------------------------- /azalea-world/src/container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/container.rs -------------------------------------------------------------------------------- /azalea-world/src/find_blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/find_blocks.rs -------------------------------------------------------------------------------- /azalea-world/src/heightmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/heightmap.rs -------------------------------------------------------------------------------- /azalea-world/src/iterators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/iterators.rs -------------------------------------------------------------------------------- /azalea-world/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/lib.rs -------------------------------------------------------------------------------- /azalea-world/src/palette/container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/palette/container.rs -------------------------------------------------------------------------------- /azalea-world/src/palette/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/palette/mod.rs -------------------------------------------------------------------------------- /azalea-world/src/palette/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/palette/tests.rs -------------------------------------------------------------------------------- /azalea-world/src/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea-world/src/world.rs -------------------------------------------------------------------------------- /azalea/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/Cargo.toml -------------------------------------------------------------------------------- /azalea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/README.md -------------------------------------------------------------------------------- /azalea/benches/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/benches/checks.rs -------------------------------------------------------------------------------- /azalea/benches/pathfinder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/benches/pathfinder.rs -------------------------------------------------------------------------------- /azalea/benches/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/benches/physics.rs -------------------------------------------------------------------------------- /azalea/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/build.rs -------------------------------------------------------------------------------- /azalea/examples/echo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/echo.rs -------------------------------------------------------------------------------- /azalea/examples/nearest_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/nearest_entity.rs -------------------------------------------------------------------------------- /azalea/examples/steal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/steal.rs -------------------------------------------------------------------------------- /azalea/examples/testbot/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/testbot/commands.rs -------------------------------------------------------------------------------- /azalea/examples/testbot/commands/combat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/testbot/commands/combat.rs -------------------------------------------------------------------------------- /azalea/examples/testbot/commands/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/testbot/commands/debug.rs -------------------------------------------------------------------------------- /azalea/examples/testbot/commands/movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/testbot/commands/movement.rs -------------------------------------------------------------------------------- /azalea/examples/testbot/killaura.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/testbot/killaura.rs -------------------------------------------------------------------------------- /azalea/examples/testbot/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/testbot/main.rs -------------------------------------------------------------------------------- /azalea/examples/todo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/todo/README.md -------------------------------------------------------------------------------- /azalea/examples/todo/craft_dig_straight_down.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/todo/craft_dig_straight_down.rs -------------------------------------------------------------------------------- /azalea/examples/todo/mine_a_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/todo/mine_a_chunk.rs -------------------------------------------------------------------------------- /azalea/examples/todo/pvp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/examples/todo/pvp.rs -------------------------------------------------------------------------------- /azalea/src/accept_resource_packs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/accept_resource_packs.rs -------------------------------------------------------------------------------- /azalea/src/auto_respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/auto_respawn.rs -------------------------------------------------------------------------------- /azalea/src/auto_tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/auto_tool.rs -------------------------------------------------------------------------------- /azalea/src/bot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/bot.rs -------------------------------------------------------------------------------- /azalea/src/container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/container.rs -------------------------------------------------------------------------------- /azalea/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/lib.rs -------------------------------------------------------------------------------- /azalea/src/nearest_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/nearest_entity.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/astar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/astar.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/costs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/costs.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/custom_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/custom_state.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/debug.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/extras/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/extras/utils.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/goals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/goals.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/goto_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/goto_event.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/mining.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/mining.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/mod.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/moves/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/moves/basic.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/moves/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/moves/mod.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/moves/parkour.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/moves/parkour.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/rel_block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/rel_block_pos.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/simulation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/simulation.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/tests.rs -------------------------------------------------------------------------------- /azalea/src/pathfinder/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/pathfinder/world.rs -------------------------------------------------------------------------------- /azalea/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/prelude.rs -------------------------------------------------------------------------------- /azalea/src/swarm/chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/swarm/chat.rs -------------------------------------------------------------------------------- /azalea/src/swarm/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/swarm/events.rs -------------------------------------------------------------------------------- /azalea/src/swarm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/swarm/mod.rs -------------------------------------------------------------------------------- /azalea/src/swarm/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/azalea/src/swarm/prelude.rs -------------------------------------------------------------------------------- /block_lookup.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/block_lookup.diff -------------------------------------------------------------------------------- /codegen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/.gitignore -------------------------------------------------------------------------------- /codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/README.md -------------------------------------------------------------------------------- /codegen/genassets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genassets.py -------------------------------------------------------------------------------- /codegen/genblocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genblocks.py -------------------------------------------------------------------------------- /codegen/genentities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genentities.py -------------------------------------------------------------------------------- /codegen/genitemcomponents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genitemcomponents.py -------------------------------------------------------------------------------- /codegen/genlanguage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genlanguage.py -------------------------------------------------------------------------------- /codegen/genpackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genpackets.py -------------------------------------------------------------------------------- /codegen/genregistries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/genregistries.py -------------------------------------------------------------------------------- /codegen/lib/code/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/blocks.py -------------------------------------------------------------------------------- /codegen/lib/code/data_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/data_components.py -------------------------------------------------------------------------------- /codegen/lib/code/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/entity.py -------------------------------------------------------------------------------- /codegen/lib/code/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/inventory.py -------------------------------------------------------------------------------- /codegen/lib/code/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/language.py -------------------------------------------------------------------------------- /codegen/lib/code/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/packet.py -------------------------------------------------------------------------------- /codegen/lib/code/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/registry.py -------------------------------------------------------------------------------- /codegen/lib/code/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/shapes.py -------------------------------------------------------------------------------- /codegen/lib/code/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/tags.py -------------------------------------------------------------------------------- /codegen/lib/code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/utils.py -------------------------------------------------------------------------------- /codegen/lib/code/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/code/version.py -------------------------------------------------------------------------------- /codegen/lib/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/download.py -------------------------------------------------------------------------------- /codegen/lib/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/extract.py -------------------------------------------------------------------------------- /codegen/lib/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/mappings.py -------------------------------------------------------------------------------- /codegen/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/lib/utils.py -------------------------------------------------------------------------------- /codegen/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/migrate.py -------------------------------------------------------------------------------- /codegen/newpacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/codegen/newpacket.py -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/flake.nix -------------------------------------------------------------------------------- /images/meshing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/images/meshing.gif -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urisinger/azalea-graphics/HEAD/rustfmt.toml --------------------------------------------------------------------------------