gitextract_5pdpetld/ ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── cmd/ │ └── gomine/ │ ├── main.go │ └── shared_server_test.go ├── commands/ │ ├── arguments/ │ │ ├── argument.go │ │ └── basic.go │ ├── command.go │ ├── manager.go │ ├── selectors/ │ │ ├── all_entities.go │ │ ├── all_players.go │ │ ├── nearest_player.go │ │ ├── random_player.go │ │ ├── selector.go │ │ └── self.go │ └── sender.go ├── default_commands.go ├── items/ │ ├── conversion.go │ ├── enchantments/ │ │ ├── enchantable.go │ │ ├── enchantment.go │ │ ├── enchantment_ids.go │ │ └── manager.go │ ├── inventory/ │ │ ├── inventory.go │ │ ├── inventory_test.go │ │ └── io/ │ │ ├── inventory_action_io.go │ │ └── inventory_action_io_list.go │ ├── item_test.go │ ├── manager.go │ ├── nbt_tag_names.go │ ├── stack.go │ └── type.go ├── net/ │ ├── info/ │ │ ├── info.go │ │ └── protocol_ids.go │ ├── manager.go │ ├── minecraft_packet_batch.go │ ├── minecraft_session.go │ ├── network_adapter.go │ ├── packet_handler.go │ ├── packets/ │ │ ├── bedrock/ │ │ │ ├── add_entity.go │ │ │ ├── add_player.go │ │ │ ├── animate.go │ │ │ ├── chunk_radius_updated.go │ │ │ ├── client_handshake.go │ │ │ ├── command_request.go │ │ │ ├── crafting_data.go │ │ │ ├── disconnect.go │ │ │ ├── full_chunk_data.go │ │ │ ├── interact_packet.go │ │ │ ├── inventory_transaction.go │ │ │ ├── login.go │ │ │ ├── move_entity.go │ │ │ ├── move_player.go │ │ │ ├── network_chunk_publisher_update.go │ │ │ ├── play_status.go │ │ │ ├── player_action.go │ │ │ ├── player_list.go │ │ │ ├── player_skin.go │ │ │ ├── remove_entity.go │ │ │ ├── request_chunk_radius.go │ │ │ ├── resource_pack_chunk_data.go │ │ │ ├── resource_pack_chunk_request.go │ │ │ ├── resource_pack_client_response.go │ │ │ ├── resource_pack_data_info.go │ │ │ ├── resource_pack_info.go │ │ │ ├── resource_pack_stack.go │ │ │ ├── server_handshake.go │ │ │ ├── set_entity_data.go │ │ │ ├── start_game.go │ │ │ ├── text.go │ │ │ ├── transfer.go │ │ │ ├── update_attributes.go │ │ │ └── update_block.go │ │ ├── data/ │ │ │ └── constants.go │ │ ├── minecraft_stream.go │ │ ├── packet.go │ │ └── types/ │ │ ├── levels.go │ │ ├── net.go │ │ ├── players.go │ │ └── resource_packs.go │ ├── protocol/ │ │ ├── entries.go │ │ ├── handler.go │ │ └── protocol.go │ └── protocol_adapter.go ├── packet_handler.go ├── packet_manager.go ├── packs/ │ ├── base.go │ ├── behavior.go │ ├── manager.go │ ├── resource.go │ └── stack.go ├── permissions/ │ ├── group.go │ ├── level.go │ ├── manager.go │ ├── permissible.go │ └── permission.go ├── players/ │ └── player.go ├── plugin.go ├── plugin_manager.go ├── resources/ │ └── gomine.yml.go ├── server.go ├── text/ │ ├── command_reader.go │ ├── font.go │ ├── logger.go │ └── logger_test.go └── utils/ ├── encryption.go └── utils.go