├── .gitignore ├── README.md ├── font └── MinecraftTen-VGORe.ttf ├── gamedata ├── block_data.txt ├── block_textures.txt ├── fuels.txt ├── furnace_recipes.txt ├── item_data.txt ├── recipes.txt └── texture_paths.txt ├── main.py ├── requirements.txt ├── scripts ├── block_data.py ├── block_interactions.py ├── camera.py ├── chunk.py ├── chunk_handler.py ├── chunk_light.py ├── chunk_mesh.py ├── craft_handler.py ├── furnace_handler.py ├── item.py ├── item_container.py ├── item_data.py ├── item_entity_handler.py ├── item_handler.py ├── light_functions.py ├── light_handler.py ├── outline_handler.py ├── placed_light_handler.py ├── player.py ├── project_handler.py ├── scene.py ├── shader_handler.py ├── sky_handler.py ├── slot_menus_handler.py ├── texture_handler.py ├── ui_handler.py ├── vao_handler.py └── vbo_handler.py ├── shaders ├── default.frag ├── default.vert ├── frame.frag ├── frame.vert ├── item_entity.frag ├── item_entity.vert ├── outline.frag ├── outline.vert ├── sky.frag ├── sky.vert ├── voxel.frag └── voxel.vert └── textures ├── andesite.png ├── birch_leaves.png ├── birch_log.png ├── birch_log_top.png ├── birch_planks.png ├── bricks.png ├── bucket.png ├── chest_bottom.png ├── chest_front.png ├── chest_side.png ├── chest_top.png ├── clay.png ├── coal.png ├── coal_block.png ├── coal_ore.png ├── cobblestone.png ├── crafting_table_front.png ├── crafting_table_side.png ├── crafting_table_top.png ├── destroy_stage_0.png ├── destroy_stage_1.png ├── destroy_stage_2.png ├── destroy_stage_3.png ├── destroy_stage_4.png ├── destroy_stage_5.png ├── destroy_stage_6.png ├── destroy_stage_7.png ├── destroy_stage_8.png ├── destroy_stage_9.png ├── diamond.png ├── diamond_axe.png ├── diamond_block.png ├── diamond_boots.png ├── diamond_chestplate.png ├── diamond_helmet.png ├── diamond_hoe.png ├── diamond_leggings.png ├── diamond_ore.png ├── diamond_pickaxe.png ├── diamond_shovel.png ├── diamond_sword.png ├── diorite.png ├── dirt.png ├── flint.png ├── flint_and_steel.png ├── furnace_front.png ├── furnace_side.png ├── furnace_top.png ├── glowstone.png ├── gold_block.png ├── gold_ingot.png ├── gold_nugget.png ├── gold_ore.png ├── golden_axe.png ├── golden_boots.png ├── golden_chestplate.png ├── golden_helmet.png ├── golden_hoe.png ├── golden_leggings.png ├── golden_pickaxe.png ├── golden_shovel.png ├── golden_sword.png ├── granite.png ├── grass_block_side.png ├── grass_block_top.png ├── gravel.png ├── iron_axe.png ├── iron_block.png ├── iron_boots.png ├── iron_chestplate.png ├── iron_helmet.png ├── iron_hoe.png ├── iron_ingot.png ├── iron_leggings.png ├── iron_nugget.png ├── iron_ore.png ├── iron_pickaxe.png ├── iron_shovel.png ├── iron_sword.png ├── lava_bucket.png ├── oak_leaves.png ├── oak_log.png ├── oak_log_top.png ├── oak_planks.png ├── polished_andesite.png ├── polished_diorite.png ├── polished_granite.png ├── raw_gold.png ├── raw_iron.png ├── sand.png ├── sandstone.png ├── sandstone_bottom.png ├── sandstone_top.png ├── snow.png ├── spruce_leaves.png ├── spruce_log.png ├── spruce_log_top.png ├── spruce_planks.png ├── stick.png ├── stone.png ├── stone_axe.png ├── stone_bricks.png ├── stone_hoe.png ├── stone_pickaxe.png ├── stone_shovel.png ├── stone_sword.png ├── water_bucket.png ├── wooden_axe.png ├── wooden_hoe.png ├── wooden_pickaxe.png ├── wooden_shovel.png └── wooden_sword.png /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /env/ 3 | /temp/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/README.md -------------------------------------------------------------------------------- /font/MinecraftTen-VGORe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/font/MinecraftTen-VGORe.ttf -------------------------------------------------------------------------------- /gamedata/block_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/block_data.txt -------------------------------------------------------------------------------- /gamedata/block_textures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/block_textures.txt -------------------------------------------------------------------------------- /gamedata/fuels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/fuels.txt -------------------------------------------------------------------------------- /gamedata/furnace_recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/furnace_recipes.txt -------------------------------------------------------------------------------- /gamedata/item_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/item_data.txt -------------------------------------------------------------------------------- /gamedata/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/recipes.txt -------------------------------------------------------------------------------- /gamedata/texture_paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/gamedata/texture_paths.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | moderngl 3 | cudart 4 | PyGLM 5 | numba 6 | pyautogui -------------------------------------------------------------------------------- /scripts/block_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/block_data.py -------------------------------------------------------------------------------- /scripts/block_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/block_interactions.py -------------------------------------------------------------------------------- /scripts/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/camera.py -------------------------------------------------------------------------------- /scripts/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/chunk.py -------------------------------------------------------------------------------- /scripts/chunk_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/chunk_handler.py -------------------------------------------------------------------------------- /scripts/chunk_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/chunk_light.py -------------------------------------------------------------------------------- /scripts/chunk_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/chunk_mesh.py -------------------------------------------------------------------------------- /scripts/craft_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/craft_handler.py -------------------------------------------------------------------------------- /scripts/furnace_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/furnace_handler.py -------------------------------------------------------------------------------- /scripts/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/item.py -------------------------------------------------------------------------------- /scripts/item_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/item_container.py -------------------------------------------------------------------------------- /scripts/item_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/item_data.py -------------------------------------------------------------------------------- /scripts/item_entity_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/item_entity_handler.py -------------------------------------------------------------------------------- /scripts/item_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/item_handler.py -------------------------------------------------------------------------------- /scripts/light_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/light_functions.py -------------------------------------------------------------------------------- /scripts/light_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/light_handler.py -------------------------------------------------------------------------------- /scripts/outline_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/outline_handler.py -------------------------------------------------------------------------------- /scripts/placed_light_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/placed_light_handler.py -------------------------------------------------------------------------------- /scripts/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/player.py -------------------------------------------------------------------------------- /scripts/project_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/project_handler.py -------------------------------------------------------------------------------- /scripts/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/scene.py -------------------------------------------------------------------------------- /scripts/shader_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/shader_handler.py -------------------------------------------------------------------------------- /scripts/sky_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/sky_handler.py -------------------------------------------------------------------------------- /scripts/slot_menus_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/slot_menus_handler.py -------------------------------------------------------------------------------- /scripts/texture_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/texture_handler.py -------------------------------------------------------------------------------- /scripts/ui_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/ui_handler.py -------------------------------------------------------------------------------- /scripts/vao_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/vao_handler.py -------------------------------------------------------------------------------- /scripts/vbo_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/scripts/vbo_handler.py -------------------------------------------------------------------------------- /shaders/default.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/default.frag -------------------------------------------------------------------------------- /shaders/default.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/default.vert -------------------------------------------------------------------------------- /shaders/frame.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/frame.frag -------------------------------------------------------------------------------- /shaders/frame.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/frame.vert -------------------------------------------------------------------------------- /shaders/item_entity.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/item_entity.frag -------------------------------------------------------------------------------- /shaders/item_entity.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/item_entity.vert -------------------------------------------------------------------------------- /shaders/outline.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/outline.frag -------------------------------------------------------------------------------- /shaders/outline.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/outline.vert -------------------------------------------------------------------------------- /shaders/sky.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/sky.frag -------------------------------------------------------------------------------- /shaders/sky.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/sky.vert -------------------------------------------------------------------------------- /shaders/voxel.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/voxel.frag -------------------------------------------------------------------------------- /shaders/voxel.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/shaders/voxel.vert -------------------------------------------------------------------------------- /textures/andesite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/andesite.png -------------------------------------------------------------------------------- /textures/birch_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/birch_leaves.png -------------------------------------------------------------------------------- /textures/birch_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/birch_log.png -------------------------------------------------------------------------------- /textures/birch_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/birch_log_top.png -------------------------------------------------------------------------------- /textures/birch_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/birch_planks.png -------------------------------------------------------------------------------- /textures/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/bricks.png -------------------------------------------------------------------------------- /textures/bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/bucket.png -------------------------------------------------------------------------------- /textures/chest_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/chest_bottom.png -------------------------------------------------------------------------------- /textures/chest_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/chest_front.png -------------------------------------------------------------------------------- /textures/chest_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/chest_side.png -------------------------------------------------------------------------------- /textures/chest_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/chest_top.png -------------------------------------------------------------------------------- /textures/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/clay.png -------------------------------------------------------------------------------- /textures/coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/coal.png -------------------------------------------------------------------------------- /textures/coal_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/coal_block.png -------------------------------------------------------------------------------- /textures/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/coal_ore.png -------------------------------------------------------------------------------- /textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/cobblestone.png -------------------------------------------------------------------------------- /textures/crafting_table_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/crafting_table_front.png -------------------------------------------------------------------------------- /textures/crafting_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/crafting_table_side.png -------------------------------------------------------------------------------- /textures/crafting_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/crafting_table_top.png -------------------------------------------------------------------------------- /textures/destroy_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_0.png -------------------------------------------------------------------------------- /textures/destroy_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_1.png -------------------------------------------------------------------------------- /textures/destroy_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_2.png -------------------------------------------------------------------------------- /textures/destroy_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_3.png -------------------------------------------------------------------------------- /textures/destroy_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_4.png -------------------------------------------------------------------------------- /textures/destroy_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_5.png -------------------------------------------------------------------------------- /textures/destroy_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_6.png -------------------------------------------------------------------------------- /textures/destroy_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_7.png -------------------------------------------------------------------------------- /textures/destroy_stage_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_8.png -------------------------------------------------------------------------------- /textures/destroy_stage_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/destroy_stage_9.png -------------------------------------------------------------------------------- /textures/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond.png -------------------------------------------------------------------------------- /textures/diamond_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_axe.png -------------------------------------------------------------------------------- /textures/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_block.png -------------------------------------------------------------------------------- /textures/diamond_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_boots.png -------------------------------------------------------------------------------- /textures/diamond_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_chestplate.png -------------------------------------------------------------------------------- /textures/diamond_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_helmet.png -------------------------------------------------------------------------------- /textures/diamond_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_hoe.png -------------------------------------------------------------------------------- /textures/diamond_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_leggings.png -------------------------------------------------------------------------------- /textures/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_ore.png -------------------------------------------------------------------------------- /textures/diamond_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_pickaxe.png -------------------------------------------------------------------------------- /textures/diamond_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_shovel.png -------------------------------------------------------------------------------- /textures/diamond_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diamond_sword.png -------------------------------------------------------------------------------- /textures/diorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/diorite.png -------------------------------------------------------------------------------- /textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/dirt.png -------------------------------------------------------------------------------- /textures/flint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/flint.png -------------------------------------------------------------------------------- /textures/flint_and_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/flint_and_steel.png -------------------------------------------------------------------------------- /textures/furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/furnace_front.png -------------------------------------------------------------------------------- /textures/furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/furnace_side.png -------------------------------------------------------------------------------- /textures/furnace_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/furnace_top.png -------------------------------------------------------------------------------- /textures/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/glowstone.png -------------------------------------------------------------------------------- /textures/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/gold_block.png -------------------------------------------------------------------------------- /textures/gold_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/gold_ingot.png -------------------------------------------------------------------------------- /textures/gold_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/gold_nugget.png -------------------------------------------------------------------------------- /textures/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/gold_ore.png -------------------------------------------------------------------------------- /textures/golden_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_axe.png -------------------------------------------------------------------------------- /textures/golden_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_boots.png -------------------------------------------------------------------------------- /textures/golden_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_chestplate.png -------------------------------------------------------------------------------- /textures/golden_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_helmet.png -------------------------------------------------------------------------------- /textures/golden_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_hoe.png -------------------------------------------------------------------------------- /textures/golden_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_leggings.png -------------------------------------------------------------------------------- /textures/golden_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_pickaxe.png -------------------------------------------------------------------------------- /textures/golden_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_shovel.png -------------------------------------------------------------------------------- /textures/golden_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/golden_sword.png -------------------------------------------------------------------------------- /textures/granite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/granite.png -------------------------------------------------------------------------------- /textures/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/grass_block_side.png -------------------------------------------------------------------------------- /textures/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/grass_block_top.png -------------------------------------------------------------------------------- /textures/gravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/gravel.png -------------------------------------------------------------------------------- /textures/iron_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_axe.png -------------------------------------------------------------------------------- /textures/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_block.png -------------------------------------------------------------------------------- /textures/iron_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_boots.png -------------------------------------------------------------------------------- /textures/iron_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_chestplate.png -------------------------------------------------------------------------------- /textures/iron_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_helmet.png -------------------------------------------------------------------------------- /textures/iron_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_hoe.png -------------------------------------------------------------------------------- /textures/iron_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_ingot.png -------------------------------------------------------------------------------- /textures/iron_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_leggings.png -------------------------------------------------------------------------------- /textures/iron_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_nugget.png -------------------------------------------------------------------------------- /textures/iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_ore.png -------------------------------------------------------------------------------- /textures/iron_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_pickaxe.png -------------------------------------------------------------------------------- /textures/iron_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_shovel.png -------------------------------------------------------------------------------- /textures/iron_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/iron_sword.png -------------------------------------------------------------------------------- /textures/lava_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/lava_bucket.png -------------------------------------------------------------------------------- /textures/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/oak_leaves.png -------------------------------------------------------------------------------- /textures/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/oak_log.png -------------------------------------------------------------------------------- /textures/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/oak_log_top.png -------------------------------------------------------------------------------- /textures/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/oak_planks.png -------------------------------------------------------------------------------- /textures/polished_andesite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/polished_andesite.png -------------------------------------------------------------------------------- /textures/polished_diorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/polished_diorite.png -------------------------------------------------------------------------------- /textures/polished_granite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/polished_granite.png -------------------------------------------------------------------------------- /textures/raw_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/raw_gold.png -------------------------------------------------------------------------------- /textures/raw_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/raw_iron.png -------------------------------------------------------------------------------- /textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/sand.png -------------------------------------------------------------------------------- /textures/sandstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/sandstone.png -------------------------------------------------------------------------------- /textures/sandstone_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/sandstone_bottom.png -------------------------------------------------------------------------------- /textures/sandstone_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/sandstone_top.png -------------------------------------------------------------------------------- /textures/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/snow.png -------------------------------------------------------------------------------- /textures/spruce_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/spruce_leaves.png -------------------------------------------------------------------------------- /textures/spruce_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/spruce_log.png -------------------------------------------------------------------------------- /textures/spruce_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/spruce_log_top.png -------------------------------------------------------------------------------- /textures/spruce_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/spruce_planks.png -------------------------------------------------------------------------------- /textures/stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stick.png -------------------------------------------------------------------------------- /textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone.png -------------------------------------------------------------------------------- /textures/stone_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone_axe.png -------------------------------------------------------------------------------- /textures/stone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone_bricks.png -------------------------------------------------------------------------------- /textures/stone_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone_hoe.png -------------------------------------------------------------------------------- /textures/stone_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone_pickaxe.png -------------------------------------------------------------------------------- /textures/stone_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone_shovel.png -------------------------------------------------------------------------------- /textures/stone_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/stone_sword.png -------------------------------------------------------------------------------- /textures/water_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/water_bucket.png -------------------------------------------------------------------------------- /textures/wooden_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/wooden_axe.png -------------------------------------------------------------------------------- /textures/wooden_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/wooden_hoe.png -------------------------------------------------------------------------------- /textures/wooden_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/wooden_pickaxe.png -------------------------------------------------------------------------------- /textures/wooden_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/wooden_shovel.png -------------------------------------------------------------------------------- /textures/wooden_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonahCoffelt/MinecraftPythonEdition/HEAD/textures/wooden_sword.png --------------------------------------------------------------------------------