├── .github └── workflows │ ├── codeql.yml │ ├── community-lsp.yml │ ├── ep13-lsp.yml │ └── formatting.yml ├── .gitignore ├── LICENSE ├── README.md ├── community ├── README.md ├── audio │ └── README.md ├── data │ └── blocks.mcpy ├── main.py ├── models │ ├── __init__.py │ ├── button.py │ ├── cactus.py │ ├── crop.py │ ├── cube.py │ ├── door.py │ ├── fire.py │ ├── flat.py │ ├── glass.py │ ├── ladder.py │ ├── leaves.py │ ├── lever.py │ ├── liquid.py │ ├── plant.py │ ├── pressure_plate.py │ ├── sign.py │ ├── sign_post.py │ ├── slab.py │ ├── snow.py │ ├── soil.py │ ├── stairs.py │ ├── tinted_glass.py │ └── torch.py ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── save │ ├── 0 │ │ ├── 0 │ │ │ └── c.0.0.dat │ │ ├── 1 │ │ │ └── c.0.1.dat │ │ ├── 2 │ │ │ └── c.0.2.dat │ │ ├── 3 │ │ │ └── c.0.3.dat │ │ ├── 1o │ │ │ └── c.0.-4.dat │ │ ├── 1p │ │ │ └── c.0.-3.dat │ │ ├── 1q │ │ │ └── c.0.-2.dat │ │ └── 1r │ │ │ └── c.0.-1.dat │ ├── 1 │ │ ├── 0 │ │ │ └── c.1.0.dat │ │ ├── 1 │ │ │ └── c.1.1.dat │ │ ├── 2 │ │ │ └── c.1.2.dat │ │ ├── 3 │ │ │ └── c.1.3.dat │ │ ├── 1o │ │ │ └── c.1.-4.dat │ │ ├── 1p │ │ │ └── c.1.-3.dat │ │ ├── 1q │ │ │ └── c.1.-2.dat │ │ └── 1r │ │ │ └── c.1.-1.dat │ ├── 2 │ │ ├── 0 │ │ │ └── c.2.0.dat │ │ ├── 1 │ │ │ └── c.2.1.dat │ │ ├── 2 │ │ │ └── c.2.2.dat │ │ ├── 3 │ │ │ └── c.2.3.dat │ │ ├── 1o │ │ │ └── c.2.-4.dat │ │ ├── 1p │ │ │ └── c.2.-3.dat │ │ ├── 1q │ │ │ └── c.2.-2.dat │ │ └── 1r │ │ │ └── c.2.-1.dat │ ├── 3 │ │ ├── 0 │ │ │ └── c.3.0.dat │ │ ├── 1 │ │ │ └── c.3.1.dat │ │ ├── 2 │ │ │ └── c.3.2.dat │ │ ├── 3 │ │ │ └── c.3.3.dat │ │ ├── 1o │ │ │ └── c.3.-4.dat │ │ ├── 1p │ │ │ └── c.3.-3.dat │ │ ├── 1q │ │ │ └── c.3.-2.dat │ │ └── 1r │ │ │ └── c.3.-1.dat │ ├── 1o │ │ ├── 0 │ │ │ └── c.-4.0.dat │ │ ├── 1 │ │ │ └── c.-4.1.dat │ │ ├── 2 │ │ │ └── c.-4.2.dat │ │ ├── 3 │ │ │ └── c.-4.3.dat │ │ ├── 1o │ │ │ └── c.-4.-4.dat │ │ ├── 1p │ │ │ └── c.-4.-3.dat │ │ ├── 1q │ │ │ └── c.-4.-2.dat │ │ └── 1r │ │ │ └── c.-4.-1.dat │ ├── 1p │ │ ├── 0 │ │ │ └── c.-3.0.dat │ │ ├── 1 │ │ │ └── c.-3.1.dat │ │ ├── 2 │ │ │ └── c.-3.2.dat │ │ ├── 3 │ │ │ └── c.-3.3.dat │ │ ├── 1o │ │ │ └── c.-3.-4.dat │ │ ├── 1p │ │ │ └── c.-3.-3.dat │ │ ├── 1q │ │ │ └── c.-3.-2.dat │ │ └── 1r │ │ │ └── c.-3.-1.dat │ ├── 1q │ │ ├── 0 │ │ │ └── c.-2.0.dat │ │ ├── 1 │ │ │ └── c.-2.1.dat │ │ ├── 2 │ │ │ └── c.-2.2.dat │ │ ├── 3 │ │ │ └── c.-2.3.dat │ │ ├── 1o │ │ │ └── c.-2.-4.dat │ │ ├── 1p │ │ │ └── c.-2.-3.dat │ │ ├── 1q │ │ │ └── c.-2.-2.dat │ │ └── 1r │ │ │ └── c.-2.-1.dat │ └── 1r │ │ ├── 0 │ │ └── c.-1.0.dat │ │ ├── 1 │ │ └── c.-1.1.dat │ │ ├── 2 │ │ └── c.-1.2.dat │ │ ├── 3 │ │ └── c.-1.3.dat │ │ ├── 1o │ │ └── c.-1.-4.dat │ │ ├── 1p │ │ └── c.-1.-3.dat │ │ ├── 1q │ │ └── c.-1.-2.dat │ │ └── 1r │ │ └── c.-1.-1.dat ├── shaders │ ├── alpha_lighting │ │ ├── frag.glsl │ │ └── vert.glsl │ └── colored_lighting │ │ ├── frag.glsl │ │ └── vert.glsl ├── src │ ├── __init__.py │ ├── chunk │ │ ├── __init__.py │ │ ├── chunk.py │ │ └── subchunk.py │ ├── controllers │ │ ├── __init__.py │ │ ├── controller.py │ │ ├── joystick.py │ │ └── keyboard_mouse.py │ ├── entity │ │ ├── __init__.py │ │ ├── entity.py │ │ └── player.py │ ├── music.py │ ├── options.py │ ├── physics │ │ ├── __init__.py │ │ ├── collider.py │ │ └── hit.py │ ├── renderer │ │ ├── __init__.py │ │ ├── block_type.py │ │ ├── shader.py │ │ └── texture_manager.py │ ├── save.py │ ├── util.py │ └── world.py └── textures │ ├── aqua_cloth.png │ ├── bedrock.png │ ├── black_cloth.png │ ├── blue_cloth.png │ ├── bookshelf.png │ ├── bricks.png │ ├── brown_mushroom.png │ ├── cactus_bottom.png │ ├── cactus_side.png │ ├── cactus_top.png │ ├── chest_front.png │ ├── chest_side.png │ ├── chest_top.png │ ├── clay.png │ ├── coal_ore.png │ ├── cobblestone.png │ ├── crafting_table_top.png │ ├── crafting_table_x.png │ ├── crafting_table_z.png │ ├── crops.png │ ├── cyan_cloth.png │ ├── dead_bush.png │ ├── diamond_block.png │ ├── diamond_ore.png │ ├── dirt.png │ ├── fire.png │ ├── furnace_front.png │ ├── furnace_side.png │ ├── furnace_y.png │ ├── glass.png │ ├── gold_block.png │ ├── gold_ore.png │ ├── grass.png │ ├── grass_side.png │ ├── gravel.png │ ├── green_cloth.png │ ├── grey_cloth.png │ ├── ice.png │ ├── indigo_cloth.png │ ├── iron_block.png │ ├── iron_door.png │ ├── iron_door_bottom_half.png │ ├── iron_ore.png │ ├── jukebox.png │ ├── jukebox_top.png │ ├── ladder.png │ ├── lava.png │ ├── leaves.png │ ├── lever.png │ ├── lime_cloth.png │ ├── lit_furnace_front.png │ ├── log_side.png │ ├── log_y.png │ ├── magenta_cloth.png │ ├── mob_spawner.png │ ├── mossy_cobblestone.png │ ├── obsidian.png │ ├── off_redstone_torch.png │ ├── off_redstone_torch_top.png │ ├── orange_cloth.png │ ├── pink_cloth.png │ ├── planks.png │ ├── purple_cloth.png │ ├── rails.png │ ├── red_cloth.png │ ├── red_mushroom.png │ ├── red_rose.png │ ├── redstone_ore.png │ ├── redstone_torch.png │ ├── redstone_torch_top.png │ ├── redstone_wire.png │ ├── sand.png │ ├── sapling.png │ ├── slab_side.png │ ├── slab_y.png │ ├── snow.png │ ├── snowy_grass_side.png │ ├── soil.png │ ├── sponge.png │ ├── stone.png │ ├── sugar_cane.png │ ├── tnt_bottom.png │ ├── tnt_side.png │ ├── tnt_top.png │ ├── torch.png │ ├── torch_top.png │ ├── unknown.png │ ├── violet_cloth.png │ ├── water.png │ ├── white_cloth.png │ ├── wooden_door.png │ ├── yellow_cloth.png │ └── yellow_flower.png ├── episode-1 └── main.py ├── episode-10 ├── block_type.py ├── camera.py ├── chunk.py ├── frag.glsl ├── hit.py ├── main.py ├── matrix.py ├── models │ ├── cactus.py │ ├── cube.py │ └── plant.py ├── shader.py ├── subchunk.py ├── texture_manager.py ├── textures │ ├── cactus_bottom.png │ ├── cactus_side.png │ ├── cactus_top.png │ ├── cobblestone.png │ ├── daisy.png │ ├── dead_bush.png │ ├── dirt.png │ ├── grass.png │ ├── grass_side.png │ ├── leaves.png │ ├── log_side.png │ ├── log_top.png │ ├── planks.png │ ├── rose.png │ ├── sand.png │ └── stone.png ├── vert.glsl └── world.py ├── episode-11 ├── block_type.py ├── camera.py ├── chunk.py ├── data │ └── blocks.mcpy ├── frag.glsl ├── hit.py ├── main.py ├── matrix.py ├── models │ ├── __init__.py │ ├── button.py │ ├── cactus.py │ ├── crop.py │ ├── cube.py │ ├── door.py │ ├── fire.py │ ├── flat.py │ ├── glass.py │ ├── ladder.py │ ├── leaves.py │ ├── lever.py │ ├── liquid.py │ ├── plant.py │ ├── pressure_plate.py │ ├── sign.py │ ├── sign_post.py │ ├── slab.py │ ├── snow.py │ ├── soil.py │ ├── stairs.py │ ├── tinted_glass.py │ └── torch.py ├── save.py ├── save │ ├── 0 │ │ ├── 0 │ │ │ └── c.0.0.dat │ │ ├── 1 │ │ │ └── c.0.1.dat │ │ ├── 2 │ │ │ └── c.0.2.dat │ │ ├── 3 │ │ │ └── c.0.3.dat │ │ ├── 1o │ │ │ └── c.0.-4.dat │ │ ├── 1p │ │ │ └── c.0.-3.dat │ │ ├── 1q │ │ │ └── c.0.-2.dat │ │ └── 1r │ │ │ └── c.0.-1.dat │ ├── 1 │ │ ├── 0 │ │ │ └── c.1.0.dat │ │ ├── 1 │ │ │ └── c.1.1.dat │ │ ├── 2 │ │ │ └── c.1.2.dat │ │ ├── 3 │ │ │ └── c.1.3.dat │ │ ├── 1o │ │ │ └── c.1.-4.dat │ │ ├── 1p │ │ │ └── c.1.-3.dat │ │ ├── 1q │ │ │ └── c.1.-2.dat │ │ └── 1r │ │ │ └── c.1.-1.dat │ ├── 2 │ │ ├── 0 │ │ │ └── c.2.0.dat │ │ ├── 1 │ │ │ └── c.2.1.dat │ │ ├── 2 │ │ │ └── c.2.2.dat │ │ ├── 3 │ │ │ └── c.2.3.dat │ │ ├── 1o │ │ │ └── c.2.-4.dat │ │ ├── 1p │ │ │ └── c.2.-3.dat │ │ ├── 1q │ │ │ └── c.2.-2.dat │ │ └── 1r │ │ │ └── c.2.-1.dat │ ├── 3 │ │ ├── 0 │ │ │ └── c.3.0.dat │ │ ├── 1 │ │ │ └── c.3.1.dat │ │ ├── 2 │ │ │ └── c.3.2.dat │ │ ├── 3 │ │ │ └── c.3.3.dat │ │ ├── 1o │ │ │ └── c.3.-4.dat │ │ ├── 1p │ │ │ └── c.3.-3.dat │ │ ├── 1q │ │ │ └── c.3.-2.dat │ │ └── 1r │ │ │ └── c.3.-1.dat │ ├── 1o │ │ ├── 0 │ │ │ └── c.-4.0.dat │ │ ├── 1 │ │ │ └── c.-4.1.dat │ │ ├── 2 │ │ │ └── c.-4.2.dat │ │ ├── 3 │ │ │ └── c.-4.3.dat │ │ ├── 1o │ │ │ └── c.-4.-4.dat │ │ ├── 1p │ │ │ └── c.-4.-3.dat │ │ ├── 1q │ │ │ └── c.-4.-2.dat │ │ └── 1r │ │ │ └── c.-4.-1.dat │ ├── 1p │ │ ├── 0 │ │ │ └── c.-3.0.dat │ │ ├── 1 │ │ │ └── c.-3.1.dat │ │ ├── 2 │ │ │ └── c.-3.2.dat │ │ ├── 3 │ │ │ └── c.-3.3.dat │ │ ├── 1o │ │ │ └── c.-3.-4.dat │ │ ├── 1p │ │ │ └── c.-3.-3.dat │ │ ├── 1q │ │ │ └── c.-3.-2.dat │ │ └── 1r │ │ │ └── c.-3.-1.dat │ ├── 1q │ │ ├── 0 │ │ │ └── c.-2.0.dat │ │ ├── 1 │ │ │ └── c.-2.1.dat │ │ ├── 2 │ │ │ └── c.-2.2.dat │ │ ├── 3 │ │ │ └── c.-2.3.dat │ │ ├── 1o │ │ │ └── c.-2.-4.dat │ │ ├── 1p │ │ │ └── c.-2.-3.dat │ │ ├── 1q │ │ │ └── c.-2.-2.dat │ │ └── 1r │ │ │ └── c.-2.-1.dat │ └── 1r │ │ ├── 0 │ │ └── c.-1.0.dat │ │ ├── 1 │ │ └── c.-1.1.dat │ │ ├── 2 │ │ └── c.-1.2.dat │ │ ├── 3 │ │ └── c.-1.3.dat │ │ ├── 1o │ │ └── c.-1.-4.dat │ │ ├── 1p │ │ └── c.-1.-3.dat │ │ ├── 1q │ │ └── c.-1.-2.dat │ │ └── 1r │ │ └── c.-1.-1.dat ├── shader.py ├── subchunk.py ├── texture_manager.py ├── textures │ ├── aqua_cloth.png │ ├── bedrock.png │ ├── black_cloth.png │ ├── blue_cloth.png │ ├── bookshelf.png │ ├── bricks.png │ ├── brown_mushroom.png │ ├── cactus_bottom.png │ ├── cactus_side.png │ ├── cactus_top.png │ ├── chest_front.png │ ├── chest_side.png │ ├── chest_top.png │ ├── clay.png │ ├── coal_ore.png │ ├── cobblestone.png │ ├── crafting_table_top.png │ ├── crafting_table_x.png │ ├── crafting_table_z.png │ ├── crops.png │ ├── cyan_cloth.png │ ├── dead_bush.png │ ├── diamond_block.png │ ├── diamond_ore.png │ ├── dirt.png │ ├── fire.png │ ├── furnace_front.png │ ├── furnace_side.png │ ├── furnace_y.png │ ├── glass.png │ ├── gold_block.png │ ├── gold_ore.png │ ├── grass.png │ ├── grass_side.png │ ├── gravel.png │ ├── green_cloth.png │ ├── grey_cloth.png │ ├── ice.png │ ├── indigo_cloth.png │ ├── iron_block.png │ ├── iron_door.png │ ├── iron_door_bottom_half.png │ ├── iron_ore.png │ ├── jukebox.png │ ├── jukebox_top.png │ ├── ladder.png │ ├── lava.png │ ├── leaves.png │ ├── lever.png │ ├── lime_cloth.png │ ├── lit_furnace_front.png │ ├── log_side.png │ ├── log_y.png │ ├── magenta_cloth.png │ ├── mob_spawner.png │ ├── mossy_cobblestone.png │ ├── obsidian.png │ ├── off_redstone_torch.png │ ├── off_redstone_torch_top.png │ ├── orange_cloth.png │ ├── pink_cloth.png │ ├── planks.png │ ├── purple_cloth.png │ ├── rails.png │ ├── red_cloth.png │ ├── red_mushroom.png │ ├── red_rose.png │ ├── redstone_ore.png │ ├── redstone_torch.png │ ├── redstone_torch_top.png │ ├── redstone_wire.png │ ├── sand.png │ ├── sapling.png │ ├── slab_side.png │ ├── slab_y.png │ ├── snow.png │ ├── snowy_grass_side.png │ ├── soil.png │ ├── sponge.png │ ├── stone.png │ ├── sugar_cane.png │ ├── tnt_bottom.png │ ├── tnt_side.png │ ├── tnt_top.png │ ├── torch.png │ ├── torch_top.png │ ├── unknown.png │ ├── violet_cloth.png │ ├── water.png │ ├── white_cloth.png │ ├── wooden_door.png │ ├── yellow_cloth.png │ └── yellow_flower.png ├── vert.glsl └── world.py ├── episode-12 ├── block_type.py ├── chunk.py ├── collider.py ├── data │ └── blocks.mcpy ├── entity.py ├── frag.glsl ├── hit.py ├── main.py ├── matrix.py ├── models │ ├── __init__.py │ ├── button.py │ ├── cactus.py │ ├── crop.py │ ├── cube.py │ ├── door.py │ ├── fire.py │ ├── flat.py │ ├── glass.py │ ├── ladder.py │ ├── leaves.py │ ├── lever.py │ ├── liquid.py │ ├── plant.py │ ├── pressure_plate.py │ ├── sign.py │ ├── sign_post.py │ ├── slab.py │ ├── snow.py │ ├── soil.py │ ├── stairs.py │ ├── tinted_glass.py │ └── torch.py ├── player.py ├── save.py ├── save │ ├── 0 │ │ ├── 0 │ │ │ └── c.0.0.dat │ │ ├── 1 │ │ │ └── c.0.1.dat │ │ ├── 2 │ │ │ └── c.0.2.dat │ │ ├── 3 │ │ │ └── c.0.3.dat │ │ ├── 1o │ │ │ └── c.0.-4.dat │ │ ├── 1p │ │ │ └── c.0.-3.dat │ │ ├── 1q │ │ │ └── c.0.-2.dat │ │ └── 1r │ │ │ └── c.0.-1.dat │ ├── 1 │ │ ├── 0 │ │ │ └── c.1.0.dat │ │ ├── 1 │ │ │ └── c.1.1.dat │ │ ├── 2 │ │ │ └── c.1.2.dat │ │ ├── 3 │ │ │ └── c.1.3.dat │ │ ├── 1o │ │ │ └── c.1.-4.dat │ │ ├── 1p │ │ │ └── c.1.-3.dat │ │ ├── 1q │ │ │ └── c.1.-2.dat │ │ └── 1r │ │ │ └── c.1.-1.dat │ ├── 2 │ │ ├── 0 │ │ │ └── c.2.0.dat │ │ ├── 1 │ │ │ └── c.2.1.dat │ │ ├── 2 │ │ │ └── c.2.2.dat │ │ ├── 3 │ │ │ └── c.2.3.dat │ │ ├── 1o │ │ │ └── c.2.-4.dat │ │ ├── 1p │ │ │ └── c.2.-3.dat │ │ ├── 1q │ │ │ └── c.2.-2.dat │ │ └── 1r │ │ │ └── c.2.-1.dat │ ├── 3 │ │ ├── 0 │ │ │ └── c.3.0.dat │ │ ├── 1 │ │ │ └── c.3.1.dat │ │ ├── 2 │ │ │ └── c.3.2.dat │ │ ├── 3 │ │ │ └── c.3.3.dat │ │ ├── 1o │ │ │ └── c.3.-4.dat │ │ ├── 1p │ │ │ └── c.3.-3.dat │ │ ├── 1q │ │ │ └── c.3.-2.dat │ │ └── 1r │ │ │ └── c.3.-1.dat │ ├── 1o │ │ ├── 0 │ │ │ └── c.-4.0.dat │ │ ├── 1 │ │ │ └── c.-4.1.dat │ │ ├── 2 │ │ │ └── c.-4.2.dat │ │ ├── 3 │ │ │ └── c.-4.3.dat │ │ ├── 1o │ │ │ └── c.-4.-4.dat │ │ ├── 1p │ │ │ └── c.-4.-3.dat │ │ ├── 1q │ │ │ └── c.-4.-2.dat │ │ └── 1r │ │ │ └── c.-4.-1.dat │ ├── 1p │ │ ├── 0 │ │ │ └── c.-3.0.dat │ │ ├── 1 │ │ │ └── c.-3.1.dat │ │ ├── 2 │ │ │ └── c.-3.2.dat │ │ ├── 3 │ │ │ └── c.-3.3.dat │ │ ├── 1o │ │ │ └── c.-3.-4.dat │ │ ├── 1p │ │ │ └── c.-3.-3.dat │ │ ├── 1q │ │ │ └── c.-3.-2.dat │ │ └── 1r │ │ │ └── c.-3.-1.dat │ ├── 1q │ │ ├── 0 │ │ │ └── c.-2.0.dat │ │ ├── 1 │ │ │ └── c.-2.1.dat │ │ ├── 2 │ │ │ └── c.-2.2.dat │ │ ├── 3 │ │ │ └── c.-2.3.dat │ │ ├── 1o │ │ │ └── c.-2.-4.dat │ │ ├── 1p │ │ │ └── c.-2.-3.dat │ │ ├── 1q │ │ │ └── c.-2.-2.dat │ │ └── 1r │ │ │ └── c.-2.-1.dat │ └── 1r │ │ ├── 0 │ │ └── c.-1.0.dat │ │ ├── 1 │ │ └── c.-1.1.dat │ │ ├── 2 │ │ └── c.-1.2.dat │ │ ├── 3 │ │ └── c.-1.3.dat │ │ ├── 1o │ │ └── c.-1.-4.dat │ │ ├── 1p │ │ └── c.-1.-3.dat │ │ ├── 1q │ │ └── c.-1.-2.dat │ │ └── 1r │ │ └── c.-1.-1.dat ├── shader.py ├── subchunk.py ├── texture_manager.py ├── textures │ ├── aqua_cloth.png │ ├── bedrock.png │ ├── black_cloth.png │ ├── blue_cloth.png │ ├── bookshelf.png │ ├── bricks.png │ ├── brown_mushroom.png │ ├── cactus_bottom.png │ ├── cactus_side.png │ ├── cactus_top.png │ ├── chest_front.png │ ├── chest_side.png │ ├── chest_top.png │ ├── clay.png │ ├── coal_ore.png │ ├── cobblestone.png │ ├── crafting_table_top.png │ ├── crafting_table_x.png │ ├── crafting_table_z.png │ ├── crops.png │ ├── cyan_cloth.png │ ├── dead_bush.png │ ├── diamond_block.png │ ├── diamond_ore.png │ ├── dirt.png │ ├── fire.png │ ├── furnace_front.png │ ├── furnace_side.png │ ├── furnace_y.png │ ├── glass.png │ ├── gold_block.png │ ├── gold_ore.png │ ├── grass.png │ ├── grass_side.png │ ├── gravel.png │ ├── green_cloth.png │ ├── grey_cloth.png │ ├── ice.png │ ├── indigo_cloth.png │ ├── iron_block.png │ ├── iron_door.png │ ├── iron_door_bottom_half.png │ ├── iron_ore.png │ ├── jukebox.png │ ├── jukebox_top.png │ ├── ladder.png │ ├── lava.png │ ├── leaves.png │ ├── lever.png │ ├── lime_cloth.png │ ├── lit_furnace_front.png │ ├── log_side.png │ ├── log_y.png │ ├── magenta_cloth.png │ ├── mob_spawner.png │ ├── mossy_cobblestone.png │ ├── obsidian.png │ ├── off_redstone_torch.png │ ├── off_redstone_torch_top.png │ ├── orange_cloth.png │ ├── pink_cloth.png │ ├── planks.png │ ├── purple_cloth.png │ ├── rails.png │ ├── red_cloth.png │ ├── red_mushroom.png │ ├── red_rose.png │ ├── redstone_ore.png │ ├── redstone_torch.png │ ├── redstone_torch_top.png │ ├── redstone_wire.png │ ├── sand.png │ ├── sapling.png │ ├── slab_side.png │ ├── slab_y.png │ ├── snow.png │ ├── snowy_grass_side.png │ ├── soil.png │ ├── sponge.png │ ├── stone.png │ ├── sugar_cane.png │ ├── tnt_bottom.png │ ├── tnt_side.png │ ├── tnt_top.png │ ├── torch.png │ ├── torch_top.png │ ├── unknown.png │ ├── violet_cloth.png │ ├── water.png │ ├── white_cloth.png │ ├── wooden_door.png │ ├── yellow_cloth.png │ └── yellow_flower.png ├── vert.glsl └── world.py ├── episode-13 ├── README.md ├── build.py ├── data │ └── blocks.mcpy ├── mcpy.py ├── models │ ├── __init__.py │ ├── button.py │ ├── cactus.py │ ├── crop.py │ ├── cube.py │ ├── door.py │ ├── fire.py │ ├── flat.py │ ├── glass.py │ ├── ladder.py │ ├── leaves.py │ ├── lever.py │ ├── liquid.py │ ├── plant.py │ ├── pressure_plate.py │ ├── sign.py │ ├── sign_post.py │ ├── slab.py │ ├── snow.py │ ├── soil.py │ ├── stairs.py │ ├── tinted_glass.py │ └── torch.py ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── save │ ├── 0 │ │ ├── 0 │ │ │ └── c.0.0.dat │ │ ├── 1 │ │ │ └── c.0.1.dat │ │ ├── 2 │ │ │ └── c.0.2.dat │ │ ├── 3 │ │ │ └── c.0.3.dat │ │ ├── 1o │ │ │ └── c.0.-4.dat │ │ ├── 1p │ │ │ └── c.0.-3.dat │ │ ├── 1q │ │ │ └── c.0.-2.dat │ │ └── 1r │ │ │ └── c.0.-1.dat │ ├── 1 │ │ ├── 0 │ │ │ └── c.1.0.dat │ │ ├── 1 │ │ │ └── c.1.1.dat │ │ ├── 2 │ │ │ └── c.1.2.dat │ │ ├── 3 │ │ │ └── c.1.3.dat │ │ ├── 1o │ │ │ └── c.1.-4.dat │ │ ├── 1p │ │ │ └── c.1.-3.dat │ │ ├── 1q │ │ │ └── c.1.-2.dat │ │ └── 1r │ │ │ └── c.1.-1.dat │ ├── 2 │ │ ├── 0 │ │ │ └── c.2.0.dat │ │ ├── 1 │ │ │ └── c.2.1.dat │ │ ├── 2 │ │ │ └── c.2.2.dat │ │ ├── 3 │ │ │ └── c.2.3.dat │ │ ├── 1o │ │ │ └── c.2.-4.dat │ │ ├── 1p │ │ │ └── c.2.-3.dat │ │ ├── 1q │ │ │ └── c.2.-2.dat │ │ └── 1r │ │ │ └── c.2.-1.dat │ ├── 3 │ │ ├── 0 │ │ │ └── c.3.0.dat │ │ ├── 1 │ │ │ └── c.3.1.dat │ │ ├── 2 │ │ │ └── c.3.2.dat │ │ ├── 3 │ │ │ └── c.3.3.dat │ │ ├── 1o │ │ │ └── c.3.-4.dat │ │ ├── 1p │ │ │ └── c.3.-3.dat │ │ ├── 1q │ │ │ └── c.3.-2.dat │ │ └── 1r │ │ │ └── c.3.-1.dat │ ├── 1o │ │ ├── 0 │ │ │ └── c.-4.0.dat │ │ ├── 1 │ │ │ └── c.-4.1.dat │ │ ├── 2 │ │ │ └── c.-4.2.dat │ │ ├── 3 │ │ │ └── c.-4.3.dat │ │ ├── 1o │ │ │ └── c.-4.-4.dat │ │ ├── 1p │ │ │ └── c.-4.-3.dat │ │ ├── 1q │ │ │ └── c.-4.-2.dat │ │ └── 1r │ │ │ └── c.-4.-1.dat │ ├── 1p │ │ ├── 0 │ │ │ └── c.-3.0.dat │ │ ├── 1 │ │ │ └── c.-3.1.dat │ │ ├── 2 │ │ │ └── c.-3.2.dat │ │ ├── 3 │ │ │ └── c.-3.3.dat │ │ ├── 1o │ │ │ └── c.-3.-4.dat │ │ ├── 1p │ │ │ └── c.-3.-3.dat │ │ ├── 1q │ │ │ └── c.-3.-2.dat │ │ └── 1r │ │ │ └── c.-3.-1.dat │ ├── 1q │ │ ├── 0 │ │ │ └── c.-2.0.dat │ │ ├── 1 │ │ │ └── c.-2.1.dat │ │ ├── 2 │ │ │ └── c.-2.2.dat │ │ ├── 3 │ │ │ └── c.-2.3.dat │ │ ├── 1o │ │ │ └── c.-2.-4.dat │ │ ├── 1p │ │ │ └── c.-2.-3.dat │ │ ├── 1q │ │ │ └── c.-2.-2.dat │ │ └── 1r │ │ │ └── c.-2.-1.dat │ └── 1r │ │ ├── 0 │ │ └── c.-1.0.dat │ │ ├── 1 │ │ └── c.-1.1.dat │ │ ├── 2 │ │ └── c.-1.2.dat │ │ ├── 3 │ │ └── c.-1.3.dat │ │ ├── 1o │ │ └── c.-1.-4.dat │ │ ├── 1p │ │ └── c.-1.-3.dat │ │ ├── 1q │ │ └── c.-1.-2.dat │ │ └── 1r │ │ └── c.-1.-1.dat ├── shaders │ ├── frag.glsl │ └── vert.glsl ├── src │ ├── __init__.py │ ├── chunk │ │ ├── __init__.py │ │ ├── __init__.pyx │ │ ├── chunk.pyx │ │ ├── common.py │ │ └── subchunk.pyx │ ├── entity │ │ ├── __init__.py │ │ ├── entity.py │ │ └── player.py │ ├── physics │ │ ├── __init__.py │ │ ├── collider.py │ │ └── hit.py │ ├── renderer │ │ ├── __init__.py │ │ ├── block_type.py │ │ ├── matrix.py │ │ ├── shader.py │ │ └── texture_manager.py │ ├── save.py │ └── world.py └── textures │ ├── aqua_cloth.png │ ├── bedrock.png │ ├── black_cloth.png │ ├── blue_cloth.png │ ├── bookshelf.png │ ├── bricks.png │ ├── brown_mushroom.png │ ├── cactus_bottom.png │ ├── cactus_side.png │ ├── cactus_top.png │ ├── chest_front.png │ ├── chest_side.png │ ├── chest_top.png │ ├── clay.png │ ├── coal_ore.png │ ├── cobblestone.png │ ├── crafting_table_top.png │ ├── crafting_table_x.png │ ├── crafting_table_z.png │ ├── crops.png │ ├── cyan_cloth.png │ ├── dead_bush.png │ ├── diamond_block.png │ ├── diamond_ore.png │ ├── dirt.png │ ├── fire.png │ ├── furnace_front.png │ ├── furnace_side.png │ ├── furnace_y.png │ ├── glass.png │ ├── gold_block.png │ ├── gold_ore.png │ ├── grass.png │ ├── grass_side.png │ ├── gravel.png │ ├── green_cloth.png │ ├── grey_cloth.png │ ├── ice.png │ ├── indigo_cloth.png │ ├── iron_block.png │ ├── iron_door.png │ ├── iron_door_bottom_half.png │ ├── iron_ore.png │ ├── jukebox.png │ ├── jukebox_top.png │ ├── ladder.png │ ├── lava.png │ ├── leaves.png │ ├── lever.png │ ├── lime_cloth.png │ ├── lit_furnace_front.png │ ├── log_side.png │ ├── log_y.png │ ├── magenta_cloth.png │ ├── mob_spawner.png │ ├── mossy_cobblestone.png │ ├── obsidian.png │ ├── off_redstone_torch.png │ ├── off_redstone_torch_top.png │ ├── orange_cloth.png │ ├── pink_cloth.png │ ├── planks.png │ ├── purple_cloth.png │ ├── rails.png │ ├── red_cloth.png │ ├── red_mushroom.png │ ├── red_rose.png │ ├── redstone_ore.png │ ├── redstone_torch.png │ ├── redstone_torch_top.png │ ├── redstone_wire.png │ ├── sand.png │ ├── sapling.png │ ├── slab_side.png │ ├── slab_y.png │ ├── snow.png │ ├── snowy_grass_side.png │ ├── soil.png │ ├── sponge.png │ ├── stone.png │ ├── sugar_cane.png │ ├── tnt_bottom.png │ ├── tnt_side.png │ ├── tnt_top.png │ ├── torch.png │ ├── torch_top.png │ ├── unknown.png │ ├── violet_cloth.png │ ├── water.png │ ├── white_cloth.png │ ├── wooden_door.png │ ├── yellow_cloth.png │ └── yellow_flower.png ├── episode-2 └── main.py ├── episode-3 ├── frag.glsl ├── main.py ├── shader.py └── vert.glsl ├── episode-4 ├── frag.glsl ├── main.py ├── matrix.py ├── shader.py └── vert.glsl ├── episode-5 ├── block_type.py ├── frag.glsl ├── main.py ├── matrix.py ├── numbers.py ├── shader.py ├── texture_manager.py ├── textures │ ├── cobblestone.png │ ├── daisy.png │ ├── dirt.png │ ├── grass.png │ ├── grass_side.png │ ├── leaves.png │ ├── log_side.png │ ├── log_top.png │ ├── planks.png │ ├── rose.png │ ├── sand.png │ └── stone.png └── vert.glsl ├── episode-6 ├── block_type.py ├── camera.py ├── frag.glsl ├── main.py ├── matrix.py ├── numbers.py ├── shader.py ├── texture_manager.py ├── textures │ ├── cobblestone.png │ ├── daisy.png │ ├── dirt.png │ ├── grass.png │ ├── grass_side.png │ ├── leaves.png │ ├── log_side.png │ ├── log_top.png │ ├── planks.png │ ├── rose.png │ ├── sand.png │ └── stone.png └── vert.glsl ├── episode-7 ├── block_type.py ├── camera.py ├── frag.glsl ├── main.py ├── matrix.py ├── numbers.py ├── shader.py ├── texture_manager.py ├── textures │ ├── cobblestone.png │ ├── daisy.png │ ├── dirt.png │ ├── grass.png │ ├── grass_side.png │ ├── leaves.png │ ├── log_side.png │ ├── log_top.png │ ├── planks.png │ ├── rose.png │ ├── sand.png │ └── stone.png └── vert.glsl ├── episode-8 ├── block_type.py ├── camera.py ├── chunk.py ├── frag.glsl ├── main.py ├── matrix.py ├── numbers.py ├── shader.py ├── texture_manager.py ├── textures │ ├── cobblestone.png │ ├── daisy.png │ ├── dirt.png │ ├── grass.png │ ├── grass_side.png │ ├── leaves.png │ ├── log_side.png │ ├── log_top.png │ ├── planks.png │ ├── rose.png │ ├── sand.png │ └── stone.png ├── vert.glsl └── world.py ├── episode-9 ├── block_type.py ├── camera.py ├── chunk.py ├── frag.glsl ├── main.py ├── matrix.py ├── models │ ├── cactus.py │ ├── cube.py │ └── plant.py ├── shader.py ├── texture_manager.py ├── textures │ ├── cactus_bottom.png │ ├── cactus_side.png │ ├── cactus_top.png │ ├── cobblestone.png │ ├── daisy.png │ ├── dead_bush.png │ ├── dirt.png │ ├── grass.png │ ├── grass_side.png │ ├── leaves.png │ ├── log_side.png │ ├── log_top.png │ ├── planks.png │ ├── rose.png │ ├── sand.png │ └── stone.png ├── vert.glsl └── world.py ├── eyecandy └── creeper.png ├── ruff.toml └── vscode_mcpy_extension ├── language-configuration.json ├── package.json └── syntaxes └── mcpy_blocks.tmLanguage.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.core 3 | *.log 4 | .vscode 5 | *.ogg 6 | *.sw[nop] 7 | *.so 8 | *.c 9 | *.so 10 | *.html 11 | *.cache 12 | dist 13 | build 14 | *.egg-info 15 | *.prof 16 | -------------------------------------------------------------------------------- /community/audio/README.md: -------------------------------------------------------------------------------- 1 | For music download `.ogg` (or other) from [archive.org](https://archive.org/details/C418-MinecraftSoundtrackVolumeAlpha/) and put them into the music `dir`. 2 | -------------------------------------------------------------------------------- /community/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /community/save/0/0/c.0.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/0/c.0.0.dat -------------------------------------------------------------------------------- /community/save/0/1/c.0.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/1/c.0.1.dat -------------------------------------------------------------------------------- /community/save/0/1o/c.0.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/1o/c.0.-4.dat -------------------------------------------------------------------------------- /community/save/0/1p/c.0.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/1p/c.0.-3.dat -------------------------------------------------------------------------------- /community/save/0/1q/c.0.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/1q/c.0.-2.dat -------------------------------------------------------------------------------- /community/save/0/1r/c.0.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/1r/c.0.-1.dat -------------------------------------------------------------------------------- /community/save/0/2/c.0.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/2/c.0.2.dat -------------------------------------------------------------------------------- /community/save/0/3/c.0.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/0/3/c.0.3.dat -------------------------------------------------------------------------------- /community/save/1/0/c.1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/0/c.1.0.dat -------------------------------------------------------------------------------- /community/save/1/1/c.1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/1/c.1.1.dat -------------------------------------------------------------------------------- /community/save/1/1o/c.1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/1o/c.1.-4.dat -------------------------------------------------------------------------------- /community/save/1/1p/c.1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/1p/c.1.-3.dat -------------------------------------------------------------------------------- /community/save/1/1q/c.1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/1q/c.1.-2.dat -------------------------------------------------------------------------------- /community/save/1/1r/c.1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/1r/c.1.-1.dat -------------------------------------------------------------------------------- /community/save/1/2/c.1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/2/c.1.2.dat -------------------------------------------------------------------------------- /community/save/1/3/c.1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1/3/c.1.3.dat -------------------------------------------------------------------------------- /community/save/1o/0/c.-4.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/0/c.-4.0.dat -------------------------------------------------------------------------------- /community/save/1o/1/c.-4.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/1/c.-4.1.dat -------------------------------------------------------------------------------- /community/save/1o/1o/c.-4.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/1o/c.-4.-4.dat -------------------------------------------------------------------------------- /community/save/1o/1p/c.-4.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/1p/c.-4.-3.dat -------------------------------------------------------------------------------- /community/save/1o/1q/c.-4.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/1q/c.-4.-2.dat -------------------------------------------------------------------------------- /community/save/1o/1r/c.-4.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/1r/c.-4.-1.dat -------------------------------------------------------------------------------- /community/save/1o/2/c.-4.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/2/c.-4.2.dat -------------------------------------------------------------------------------- /community/save/1o/3/c.-4.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1o/3/c.-4.3.dat -------------------------------------------------------------------------------- /community/save/1p/0/c.-3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/0/c.-3.0.dat -------------------------------------------------------------------------------- /community/save/1p/1/c.-3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/1/c.-3.1.dat -------------------------------------------------------------------------------- /community/save/1p/1o/c.-3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/1o/c.-3.-4.dat -------------------------------------------------------------------------------- /community/save/1p/1p/c.-3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/1p/c.-3.-3.dat -------------------------------------------------------------------------------- /community/save/1p/1q/c.-3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/1q/c.-3.-2.dat -------------------------------------------------------------------------------- /community/save/1p/1r/c.-3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/1r/c.-3.-1.dat -------------------------------------------------------------------------------- /community/save/1p/2/c.-3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/2/c.-3.2.dat -------------------------------------------------------------------------------- /community/save/1p/3/c.-3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1p/3/c.-3.3.dat -------------------------------------------------------------------------------- /community/save/1q/0/c.-2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/0/c.-2.0.dat -------------------------------------------------------------------------------- /community/save/1q/1/c.-2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/1/c.-2.1.dat -------------------------------------------------------------------------------- /community/save/1q/1o/c.-2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/1o/c.-2.-4.dat -------------------------------------------------------------------------------- /community/save/1q/1p/c.-2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/1p/c.-2.-3.dat -------------------------------------------------------------------------------- /community/save/1q/1q/c.-2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/1q/c.-2.-2.dat -------------------------------------------------------------------------------- /community/save/1q/1r/c.-2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/1r/c.-2.-1.dat -------------------------------------------------------------------------------- /community/save/1q/2/c.-2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/2/c.-2.2.dat -------------------------------------------------------------------------------- /community/save/1q/3/c.-2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1q/3/c.-2.3.dat -------------------------------------------------------------------------------- /community/save/1r/0/c.-1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/0/c.-1.0.dat -------------------------------------------------------------------------------- /community/save/1r/1/c.-1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/1/c.-1.1.dat -------------------------------------------------------------------------------- /community/save/1r/1o/c.-1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/1o/c.-1.-4.dat -------------------------------------------------------------------------------- /community/save/1r/1p/c.-1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/1p/c.-1.-3.dat -------------------------------------------------------------------------------- /community/save/1r/1q/c.-1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/1q/c.-1.-2.dat -------------------------------------------------------------------------------- /community/save/1r/1r/c.-1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/1r/c.-1.-1.dat -------------------------------------------------------------------------------- /community/save/1r/2/c.-1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/2/c.-1.2.dat -------------------------------------------------------------------------------- /community/save/1r/3/c.-1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/1r/3/c.-1.3.dat -------------------------------------------------------------------------------- /community/save/2/0/c.2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/0/c.2.0.dat -------------------------------------------------------------------------------- /community/save/2/1/c.2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/1/c.2.1.dat -------------------------------------------------------------------------------- /community/save/2/1o/c.2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/1o/c.2.-4.dat -------------------------------------------------------------------------------- /community/save/2/1p/c.2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/1p/c.2.-3.dat -------------------------------------------------------------------------------- /community/save/2/1q/c.2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/1q/c.2.-2.dat -------------------------------------------------------------------------------- /community/save/2/1r/c.2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/1r/c.2.-1.dat -------------------------------------------------------------------------------- /community/save/2/2/c.2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/2/c.2.2.dat -------------------------------------------------------------------------------- /community/save/2/3/c.2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/2/3/c.2.3.dat -------------------------------------------------------------------------------- /community/save/3/0/c.3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/0/c.3.0.dat -------------------------------------------------------------------------------- /community/save/3/1/c.3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/1/c.3.1.dat -------------------------------------------------------------------------------- /community/save/3/1o/c.3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/1o/c.3.-4.dat -------------------------------------------------------------------------------- /community/save/3/1p/c.3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/1p/c.3.-3.dat -------------------------------------------------------------------------------- /community/save/3/1q/c.3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/1q/c.3.-2.dat -------------------------------------------------------------------------------- /community/save/3/1r/c.3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/1r/c.3.-1.dat -------------------------------------------------------------------------------- /community/save/3/2/c.3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/2/c.3.2.dat -------------------------------------------------------------------------------- /community/save/3/3/c.3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/save/3/3/c.3.3.dat -------------------------------------------------------------------------------- /community/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/src/__init__.py -------------------------------------------------------------------------------- /community/src/chunk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/src/chunk/__init__.py -------------------------------------------------------------------------------- /community/src/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/src/controllers/__init__.py -------------------------------------------------------------------------------- /community/src/entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/src/entity/__init__.py -------------------------------------------------------------------------------- /community/src/music.py: -------------------------------------------------------------------------------- 1 | import pyglet.media 2 | 3 | 4 | class MusicPlayer(pyglet.media.Player): 5 | def __init__(self): 6 | super().__init__() 7 | 8 | self.standby = False 9 | self.next_time = 0 10 | -------------------------------------------------------------------------------- /community/src/physics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/src/physics/__init__.py -------------------------------------------------------------------------------- /community/src/renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/src/renderer/__init__.py -------------------------------------------------------------------------------- /community/textures/aqua_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/aqua_cloth.png -------------------------------------------------------------------------------- /community/textures/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/bedrock.png -------------------------------------------------------------------------------- /community/textures/black_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/black_cloth.png -------------------------------------------------------------------------------- /community/textures/blue_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/blue_cloth.png -------------------------------------------------------------------------------- /community/textures/bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/bookshelf.png -------------------------------------------------------------------------------- /community/textures/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/bricks.png -------------------------------------------------------------------------------- /community/textures/brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/brown_mushroom.png -------------------------------------------------------------------------------- /community/textures/cactus_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/cactus_bottom.png -------------------------------------------------------------------------------- /community/textures/cactus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/cactus_side.png -------------------------------------------------------------------------------- /community/textures/cactus_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/cactus_top.png -------------------------------------------------------------------------------- /community/textures/chest_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/chest_front.png -------------------------------------------------------------------------------- /community/textures/chest_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/chest_side.png -------------------------------------------------------------------------------- /community/textures/chest_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/chest_top.png -------------------------------------------------------------------------------- /community/textures/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/clay.png -------------------------------------------------------------------------------- /community/textures/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/coal_ore.png -------------------------------------------------------------------------------- /community/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/cobblestone.png -------------------------------------------------------------------------------- /community/textures/crafting_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/crafting_table_top.png -------------------------------------------------------------------------------- /community/textures/crafting_table_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/crafting_table_x.png -------------------------------------------------------------------------------- /community/textures/crafting_table_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/crafting_table_z.png -------------------------------------------------------------------------------- /community/textures/crops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/crops.png -------------------------------------------------------------------------------- /community/textures/cyan_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/cyan_cloth.png -------------------------------------------------------------------------------- /community/textures/dead_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/dead_bush.png -------------------------------------------------------------------------------- /community/textures/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/diamond_block.png -------------------------------------------------------------------------------- /community/textures/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/diamond_ore.png -------------------------------------------------------------------------------- /community/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/dirt.png -------------------------------------------------------------------------------- /community/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/fire.png -------------------------------------------------------------------------------- /community/textures/furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/furnace_front.png -------------------------------------------------------------------------------- /community/textures/furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/furnace_side.png -------------------------------------------------------------------------------- /community/textures/furnace_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/furnace_y.png -------------------------------------------------------------------------------- /community/textures/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/glass.png -------------------------------------------------------------------------------- /community/textures/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/gold_block.png -------------------------------------------------------------------------------- /community/textures/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/gold_ore.png -------------------------------------------------------------------------------- /community/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/grass.png -------------------------------------------------------------------------------- /community/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/grass_side.png -------------------------------------------------------------------------------- /community/textures/gravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/gravel.png -------------------------------------------------------------------------------- /community/textures/green_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/green_cloth.png -------------------------------------------------------------------------------- /community/textures/grey_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/grey_cloth.png -------------------------------------------------------------------------------- /community/textures/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/ice.png -------------------------------------------------------------------------------- /community/textures/indigo_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/indigo_cloth.png -------------------------------------------------------------------------------- /community/textures/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/iron_block.png -------------------------------------------------------------------------------- /community/textures/iron_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/iron_door.png -------------------------------------------------------------------------------- /community/textures/iron_door_bottom_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/iron_door_bottom_half.png -------------------------------------------------------------------------------- /community/textures/iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/iron_ore.png -------------------------------------------------------------------------------- /community/textures/jukebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/jukebox.png -------------------------------------------------------------------------------- /community/textures/jukebox_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/jukebox_top.png -------------------------------------------------------------------------------- /community/textures/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/ladder.png -------------------------------------------------------------------------------- /community/textures/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/lava.png -------------------------------------------------------------------------------- /community/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/leaves.png -------------------------------------------------------------------------------- /community/textures/lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/lever.png -------------------------------------------------------------------------------- /community/textures/lime_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/lime_cloth.png -------------------------------------------------------------------------------- /community/textures/lit_furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/lit_furnace_front.png -------------------------------------------------------------------------------- /community/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/log_side.png -------------------------------------------------------------------------------- /community/textures/log_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/log_y.png -------------------------------------------------------------------------------- /community/textures/magenta_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/magenta_cloth.png -------------------------------------------------------------------------------- /community/textures/mob_spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/mob_spawner.png -------------------------------------------------------------------------------- /community/textures/mossy_cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/mossy_cobblestone.png -------------------------------------------------------------------------------- /community/textures/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/obsidian.png -------------------------------------------------------------------------------- /community/textures/off_redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/off_redstone_torch.png -------------------------------------------------------------------------------- /community/textures/off_redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/off_redstone_torch_top.png -------------------------------------------------------------------------------- /community/textures/orange_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/orange_cloth.png -------------------------------------------------------------------------------- /community/textures/pink_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/pink_cloth.png -------------------------------------------------------------------------------- /community/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/planks.png -------------------------------------------------------------------------------- /community/textures/purple_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/purple_cloth.png -------------------------------------------------------------------------------- /community/textures/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/rails.png -------------------------------------------------------------------------------- /community/textures/red_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/red_cloth.png -------------------------------------------------------------------------------- /community/textures/red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/red_mushroom.png -------------------------------------------------------------------------------- /community/textures/red_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/red_rose.png -------------------------------------------------------------------------------- /community/textures/redstone_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/redstone_ore.png -------------------------------------------------------------------------------- /community/textures/redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/redstone_torch.png -------------------------------------------------------------------------------- /community/textures/redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/redstone_torch_top.png -------------------------------------------------------------------------------- /community/textures/redstone_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/redstone_wire.png -------------------------------------------------------------------------------- /community/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/sand.png -------------------------------------------------------------------------------- /community/textures/sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/sapling.png -------------------------------------------------------------------------------- /community/textures/slab_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/slab_side.png -------------------------------------------------------------------------------- /community/textures/slab_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/slab_y.png -------------------------------------------------------------------------------- /community/textures/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/snow.png -------------------------------------------------------------------------------- /community/textures/snowy_grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/snowy_grass_side.png -------------------------------------------------------------------------------- /community/textures/soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/soil.png -------------------------------------------------------------------------------- /community/textures/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/sponge.png -------------------------------------------------------------------------------- /community/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/stone.png -------------------------------------------------------------------------------- /community/textures/sugar_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/sugar_cane.png -------------------------------------------------------------------------------- /community/textures/tnt_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/tnt_bottom.png -------------------------------------------------------------------------------- /community/textures/tnt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/tnt_side.png -------------------------------------------------------------------------------- /community/textures/tnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/tnt_top.png -------------------------------------------------------------------------------- /community/textures/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/torch.png -------------------------------------------------------------------------------- /community/textures/torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/torch_top.png -------------------------------------------------------------------------------- /community/textures/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/unknown.png -------------------------------------------------------------------------------- /community/textures/violet_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/violet_cloth.png -------------------------------------------------------------------------------- /community/textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/water.png -------------------------------------------------------------------------------- /community/textures/white_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/white_cloth.png -------------------------------------------------------------------------------- /community/textures/wooden_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/wooden_door.png -------------------------------------------------------------------------------- /community/textures/yellow_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/yellow_cloth.png -------------------------------------------------------------------------------- /community/textures/yellow_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/community/textures/yellow_flower.png -------------------------------------------------------------------------------- /episode-10/textures/cactus_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/cactus_bottom.png -------------------------------------------------------------------------------- /episode-10/textures/cactus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/cactus_side.png -------------------------------------------------------------------------------- /episode-10/textures/cactus_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/cactus_top.png -------------------------------------------------------------------------------- /episode-10/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-10/textures/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/daisy.png -------------------------------------------------------------------------------- /episode-10/textures/dead_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/dead_bush.png -------------------------------------------------------------------------------- /episode-10/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/dirt.png -------------------------------------------------------------------------------- /episode-10/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/grass.png -------------------------------------------------------------------------------- /episode-10/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/grass_side.png -------------------------------------------------------------------------------- /episode-10/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/leaves.png -------------------------------------------------------------------------------- /episode-10/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/log_side.png -------------------------------------------------------------------------------- /episode-10/textures/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/log_top.png -------------------------------------------------------------------------------- /episode-10/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/planks.png -------------------------------------------------------------------------------- /episode-10/textures/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/rose.png -------------------------------------------------------------------------------- /episode-10/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/sand.png -------------------------------------------------------------------------------- /episode-10/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-10/textures/stone.png -------------------------------------------------------------------------------- /episode-11/save/0/0/c.0.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/0/c.0.0.dat -------------------------------------------------------------------------------- /episode-11/save/0/1/c.0.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/1/c.0.1.dat -------------------------------------------------------------------------------- /episode-11/save/0/1o/c.0.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/1o/c.0.-4.dat -------------------------------------------------------------------------------- /episode-11/save/0/1p/c.0.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/1p/c.0.-3.dat -------------------------------------------------------------------------------- /episode-11/save/0/1q/c.0.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/1q/c.0.-2.dat -------------------------------------------------------------------------------- /episode-11/save/0/1r/c.0.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/1r/c.0.-1.dat -------------------------------------------------------------------------------- /episode-11/save/0/2/c.0.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/2/c.0.2.dat -------------------------------------------------------------------------------- /episode-11/save/0/3/c.0.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/0/3/c.0.3.dat -------------------------------------------------------------------------------- /episode-11/save/1/0/c.1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/0/c.1.0.dat -------------------------------------------------------------------------------- /episode-11/save/1/1/c.1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/1/c.1.1.dat -------------------------------------------------------------------------------- /episode-11/save/1/1o/c.1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/1o/c.1.-4.dat -------------------------------------------------------------------------------- /episode-11/save/1/1p/c.1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/1p/c.1.-3.dat -------------------------------------------------------------------------------- /episode-11/save/1/1q/c.1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/1q/c.1.-2.dat -------------------------------------------------------------------------------- /episode-11/save/1/1r/c.1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/1r/c.1.-1.dat -------------------------------------------------------------------------------- /episode-11/save/1/2/c.1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/2/c.1.2.dat -------------------------------------------------------------------------------- /episode-11/save/1/3/c.1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1/3/c.1.3.dat -------------------------------------------------------------------------------- /episode-11/save/1o/0/c.-4.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/0/c.-4.0.dat -------------------------------------------------------------------------------- /episode-11/save/1o/1/c.-4.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/1/c.-4.1.dat -------------------------------------------------------------------------------- /episode-11/save/1o/1o/c.-4.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/1o/c.-4.-4.dat -------------------------------------------------------------------------------- /episode-11/save/1o/1p/c.-4.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/1p/c.-4.-3.dat -------------------------------------------------------------------------------- /episode-11/save/1o/1q/c.-4.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/1q/c.-4.-2.dat -------------------------------------------------------------------------------- /episode-11/save/1o/1r/c.-4.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/1r/c.-4.-1.dat -------------------------------------------------------------------------------- /episode-11/save/1o/2/c.-4.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/2/c.-4.2.dat -------------------------------------------------------------------------------- /episode-11/save/1o/3/c.-4.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1o/3/c.-4.3.dat -------------------------------------------------------------------------------- /episode-11/save/1p/0/c.-3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/0/c.-3.0.dat -------------------------------------------------------------------------------- /episode-11/save/1p/1/c.-3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/1/c.-3.1.dat -------------------------------------------------------------------------------- /episode-11/save/1p/1o/c.-3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/1o/c.-3.-4.dat -------------------------------------------------------------------------------- /episode-11/save/1p/1p/c.-3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/1p/c.-3.-3.dat -------------------------------------------------------------------------------- /episode-11/save/1p/1q/c.-3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/1q/c.-3.-2.dat -------------------------------------------------------------------------------- /episode-11/save/1p/1r/c.-3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/1r/c.-3.-1.dat -------------------------------------------------------------------------------- /episode-11/save/1p/2/c.-3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/2/c.-3.2.dat -------------------------------------------------------------------------------- /episode-11/save/1p/3/c.-3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1p/3/c.-3.3.dat -------------------------------------------------------------------------------- /episode-11/save/1q/0/c.-2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/0/c.-2.0.dat -------------------------------------------------------------------------------- /episode-11/save/1q/1/c.-2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/1/c.-2.1.dat -------------------------------------------------------------------------------- /episode-11/save/1q/1o/c.-2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/1o/c.-2.-4.dat -------------------------------------------------------------------------------- /episode-11/save/1q/1p/c.-2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/1p/c.-2.-3.dat -------------------------------------------------------------------------------- /episode-11/save/1q/1q/c.-2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/1q/c.-2.-2.dat -------------------------------------------------------------------------------- /episode-11/save/1q/1r/c.-2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/1r/c.-2.-1.dat -------------------------------------------------------------------------------- /episode-11/save/1q/2/c.-2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/2/c.-2.2.dat -------------------------------------------------------------------------------- /episode-11/save/1q/3/c.-2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1q/3/c.-2.3.dat -------------------------------------------------------------------------------- /episode-11/save/1r/0/c.-1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/0/c.-1.0.dat -------------------------------------------------------------------------------- /episode-11/save/1r/1/c.-1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/1/c.-1.1.dat -------------------------------------------------------------------------------- /episode-11/save/1r/1o/c.-1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/1o/c.-1.-4.dat -------------------------------------------------------------------------------- /episode-11/save/1r/1p/c.-1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/1p/c.-1.-3.dat -------------------------------------------------------------------------------- /episode-11/save/1r/1q/c.-1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/1q/c.-1.-2.dat -------------------------------------------------------------------------------- /episode-11/save/1r/1r/c.-1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/1r/c.-1.-1.dat -------------------------------------------------------------------------------- /episode-11/save/1r/2/c.-1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/2/c.-1.2.dat -------------------------------------------------------------------------------- /episode-11/save/1r/3/c.-1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/1r/3/c.-1.3.dat -------------------------------------------------------------------------------- /episode-11/save/2/0/c.2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/0/c.2.0.dat -------------------------------------------------------------------------------- /episode-11/save/2/1/c.2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/1/c.2.1.dat -------------------------------------------------------------------------------- /episode-11/save/2/1o/c.2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/1o/c.2.-4.dat -------------------------------------------------------------------------------- /episode-11/save/2/1p/c.2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/1p/c.2.-3.dat -------------------------------------------------------------------------------- /episode-11/save/2/1q/c.2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/1q/c.2.-2.dat -------------------------------------------------------------------------------- /episode-11/save/2/1r/c.2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/1r/c.2.-1.dat -------------------------------------------------------------------------------- /episode-11/save/2/2/c.2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/2/c.2.2.dat -------------------------------------------------------------------------------- /episode-11/save/2/3/c.2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/2/3/c.2.3.dat -------------------------------------------------------------------------------- /episode-11/save/3/0/c.3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/0/c.3.0.dat -------------------------------------------------------------------------------- /episode-11/save/3/1/c.3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/1/c.3.1.dat -------------------------------------------------------------------------------- /episode-11/save/3/1o/c.3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/1o/c.3.-4.dat -------------------------------------------------------------------------------- /episode-11/save/3/1p/c.3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/1p/c.3.-3.dat -------------------------------------------------------------------------------- /episode-11/save/3/1q/c.3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/1q/c.3.-2.dat -------------------------------------------------------------------------------- /episode-11/save/3/1r/c.3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/1r/c.3.-1.dat -------------------------------------------------------------------------------- /episode-11/save/3/2/c.3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/2/c.3.2.dat -------------------------------------------------------------------------------- /episode-11/save/3/3/c.3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/save/3/3/c.3.3.dat -------------------------------------------------------------------------------- /episode-11/textures/aqua_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/aqua_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/bedrock.png -------------------------------------------------------------------------------- /episode-11/textures/black_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/black_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/blue_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/blue_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/bookshelf.png -------------------------------------------------------------------------------- /episode-11/textures/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/bricks.png -------------------------------------------------------------------------------- /episode-11/textures/brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/brown_mushroom.png -------------------------------------------------------------------------------- /episode-11/textures/cactus_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/cactus_bottom.png -------------------------------------------------------------------------------- /episode-11/textures/cactus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/cactus_side.png -------------------------------------------------------------------------------- /episode-11/textures/cactus_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/cactus_top.png -------------------------------------------------------------------------------- /episode-11/textures/chest_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/chest_front.png -------------------------------------------------------------------------------- /episode-11/textures/chest_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/chest_side.png -------------------------------------------------------------------------------- /episode-11/textures/chest_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/chest_top.png -------------------------------------------------------------------------------- /episode-11/textures/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/clay.png -------------------------------------------------------------------------------- /episode-11/textures/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/coal_ore.png -------------------------------------------------------------------------------- /episode-11/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-11/textures/crafting_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/crafting_table_top.png -------------------------------------------------------------------------------- /episode-11/textures/crafting_table_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/crafting_table_x.png -------------------------------------------------------------------------------- /episode-11/textures/crafting_table_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/crafting_table_z.png -------------------------------------------------------------------------------- /episode-11/textures/crops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/crops.png -------------------------------------------------------------------------------- /episode-11/textures/cyan_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/cyan_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/dead_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/dead_bush.png -------------------------------------------------------------------------------- /episode-11/textures/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/diamond_block.png -------------------------------------------------------------------------------- /episode-11/textures/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/diamond_ore.png -------------------------------------------------------------------------------- /episode-11/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/dirt.png -------------------------------------------------------------------------------- /episode-11/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/fire.png -------------------------------------------------------------------------------- /episode-11/textures/furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/furnace_front.png -------------------------------------------------------------------------------- /episode-11/textures/furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/furnace_side.png -------------------------------------------------------------------------------- /episode-11/textures/furnace_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/furnace_y.png -------------------------------------------------------------------------------- /episode-11/textures/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/glass.png -------------------------------------------------------------------------------- /episode-11/textures/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/gold_block.png -------------------------------------------------------------------------------- /episode-11/textures/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/gold_ore.png -------------------------------------------------------------------------------- /episode-11/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/grass.png -------------------------------------------------------------------------------- /episode-11/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/grass_side.png -------------------------------------------------------------------------------- /episode-11/textures/gravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/gravel.png -------------------------------------------------------------------------------- /episode-11/textures/green_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/green_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/grey_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/grey_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/ice.png -------------------------------------------------------------------------------- /episode-11/textures/indigo_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/indigo_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/iron_block.png -------------------------------------------------------------------------------- /episode-11/textures/iron_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/iron_door.png -------------------------------------------------------------------------------- /episode-11/textures/iron_door_bottom_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/iron_door_bottom_half.png -------------------------------------------------------------------------------- /episode-11/textures/iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/iron_ore.png -------------------------------------------------------------------------------- /episode-11/textures/jukebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/jukebox.png -------------------------------------------------------------------------------- /episode-11/textures/jukebox_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/jukebox_top.png -------------------------------------------------------------------------------- /episode-11/textures/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/ladder.png -------------------------------------------------------------------------------- /episode-11/textures/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/lava.png -------------------------------------------------------------------------------- /episode-11/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/leaves.png -------------------------------------------------------------------------------- /episode-11/textures/lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/lever.png -------------------------------------------------------------------------------- /episode-11/textures/lime_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/lime_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/lit_furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/lit_furnace_front.png -------------------------------------------------------------------------------- /episode-11/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/log_side.png -------------------------------------------------------------------------------- /episode-11/textures/log_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/log_y.png -------------------------------------------------------------------------------- /episode-11/textures/magenta_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/magenta_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/mob_spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/mob_spawner.png -------------------------------------------------------------------------------- /episode-11/textures/mossy_cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/mossy_cobblestone.png -------------------------------------------------------------------------------- /episode-11/textures/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/obsidian.png -------------------------------------------------------------------------------- /episode-11/textures/off_redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/off_redstone_torch.png -------------------------------------------------------------------------------- /episode-11/textures/off_redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/off_redstone_torch_top.png -------------------------------------------------------------------------------- /episode-11/textures/orange_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/orange_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/pink_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/pink_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/planks.png -------------------------------------------------------------------------------- /episode-11/textures/purple_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/purple_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/rails.png -------------------------------------------------------------------------------- /episode-11/textures/red_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/red_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/red_mushroom.png -------------------------------------------------------------------------------- /episode-11/textures/red_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/red_rose.png -------------------------------------------------------------------------------- /episode-11/textures/redstone_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/redstone_ore.png -------------------------------------------------------------------------------- /episode-11/textures/redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/redstone_torch.png -------------------------------------------------------------------------------- /episode-11/textures/redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/redstone_torch_top.png -------------------------------------------------------------------------------- /episode-11/textures/redstone_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/redstone_wire.png -------------------------------------------------------------------------------- /episode-11/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/sand.png -------------------------------------------------------------------------------- /episode-11/textures/sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/sapling.png -------------------------------------------------------------------------------- /episode-11/textures/slab_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/slab_side.png -------------------------------------------------------------------------------- /episode-11/textures/slab_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/slab_y.png -------------------------------------------------------------------------------- /episode-11/textures/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/snow.png -------------------------------------------------------------------------------- /episode-11/textures/snowy_grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/snowy_grass_side.png -------------------------------------------------------------------------------- /episode-11/textures/soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/soil.png -------------------------------------------------------------------------------- /episode-11/textures/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/sponge.png -------------------------------------------------------------------------------- /episode-11/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/stone.png -------------------------------------------------------------------------------- /episode-11/textures/sugar_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/sugar_cane.png -------------------------------------------------------------------------------- /episode-11/textures/tnt_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/tnt_bottom.png -------------------------------------------------------------------------------- /episode-11/textures/tnt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/tnt_side.png -------------------------------------------------------------------------------- /episode-11/textures/tnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/tnt_top.png -------------------------------------------------------------------------------- /episode-11/textures/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/torch.png -------------------------------------------------------------------------------- /episode-11/textures/torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/torch_top.png -------------------------------------------------------------------------------- /episode-11/textures/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/unknown.png -------------------------------------------------------------------------------- /episode-11/textures/violet_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/violet_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/water.png -------------------------------------------------------------------------------- /episode-11/textures/white_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/white_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/wooden_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/wooden_door.png -------------------------------------------------------------------------------- /episode-11/textures/yellow_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/yellow_cloth.png -------------------------------------------------------------------------------- /episode-11/textures/yellow_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-11/textures/yellow_flower.png -------------------------------------------------------------------------------- /episode-12/save/0/0/c.0.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/0/c.0.0.dat -------------------------------------------------------------------------------- /episode-12/save/0/1/c.0.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/1/c.0.1.dat -------------------------------------------------------------------------------- /episode-12/save/0/1o/c.0.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/1o/c.0.-4.dat -------------------------------------------------------------------------------- /episode-12/save/0/1p/c.0.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/1p/c.0.-3.dat -------------------------------------------------------------------------------- /episode-12/save/0/1q/c.0.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/1q/c.0.-2.dat -------------------------------------------------------------------------------- /episode-12/save/0/1r/c.0.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/1r/c.0.-1.dat -------------------------------------------------------------------------------- /episode-12/save/0/2/c.0.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/2/c.0.2.dat -------------------------------------------------------------------------------- /episode-12/save/0/3/c.0.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/0/3/c.0.3.dat -------------------------------------------------------------------------------- /episode-12/save/1/0/c.1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/0/c.1.0.dat -------------------------------------------------------------------------------- /episode-12/save/1/1/c.1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/1/c.1.1.dat -------------------------------------------------------------------------------- /episode-12/save/1/1o/c.1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/1o/c.1.-4.dat -------------------------------------------------------------------------------- /episode-12/save/1/1p/c.1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/1p/c.1.-3.dat -------------------------------------------------------------------------------- /episode-12/save/1/1q/c.1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/1q/c.1.-2.dat -------------------------------------------------------------------------------- /episode-12/save/1/1r/c.1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/1r/c.1.-1.dat -------------------------------------------------------------------------------- /episode-12/save/1/2/c.1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/2/c.1.2.dat -------------------------------------------------------------------------------- /episode-12/save/1/3/c.1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1/3/c.1.3.dat -------------------------------------------------------------------------------- /episode-12/save/1o/0/c.-4.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/0/c.-4.0.dat -------------------------------------------------------------------------------- /episode-12/save/1o/1/c.-4.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/1/c.-4.1.dat -------------------------------------------------------------------------------- /episode-12/save/1o/1o/c.-4.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/1o/c.-4.-4.dat -------------------------------------------------------------------------------- /episode-12/save/1o/1p/c.-4.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/1p/c.-4.-3.dat -------------------------------------------------------------------------------- /episode-12/save/1o/1q/c.-4.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/1q/c.-4.-2.dat -------------------------------------------------------------------------------- /episode-12/save/1o/1r/c.-4.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/1r/c.-4.-1.dat -------------------------------------------------------------------------------- /episode-12/save/1o/2/c.-4.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/2/c.-4.2.dat -------------------------------------------------------------------------------- /episode-12/save/1o/3/c.-4.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1o/3/c.-4.3.dat -------------------------------------------------------------------------------- /episode-12/save/1p/0/c.-3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/0/c.-3.0.dat -------------------------------------------------------------------------------- /episode-12/save/1p/1/c.-3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/1/c.-3.1.dat -------------------------------------------------------------------------------- /episode-12/save/1p/1o/c.-3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/1o/c.-3.-4.dat -------------------------------------------------------------------------------- /episode-12/save/1p/1p/c.-3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/1p/c.-3.-3.dat -------------------------------------------------------------------------------- /episode-12/save/1p/1q/c.-3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/1q/c.-3.-2.dat -------------------------------------------------------------------------------- /episode-12/save/1p/1r/c.-3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/1r/c.-3.-1.dat -------------------------------------------------------------------------------- /episode-12/save/1p/2/c.-3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/2/c.-3.2.dat -------------------------------------------------------------------------------- /episode-12/save/1p/3/c.-3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1p/3/c.-3.3.dat -------------------------------------------------------------------------------- /episode-12/save/1q/0/c.-2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/0/c.-2.0.dat -------------------------------------------------------------------------------- /episode-12/save/1q/1/c.-2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/1/c.-2.1.dat -------------------------------------------------------------------------------- /episode-12/save/1q/1o/c.-2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/1o/c.-2.-4.dat -------------------------------------------------------------------------------- /episode-12/save/1q/1p/c.-2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/1p/c.-2.-3.dat -------------------------------------------------------------------------------- /episode-12/save/1q/1q/c.-2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/1q/c.-2.-2.dat -------------------------------------------------------------------------------- /episode-12/save/1q/1r/c.-2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/1r/c.-2.-1.dat -------------------------------------------------------------------------------- /episode-12/save/1q/2/c.-2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/2/c.-2.2.dat -------------------------------------------------------------------------------- /episode-12/save/1q/3/c.-2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1q/3/c.-2.3.dat -------------------------------------------------------------------------------- /episode-12/save/1r/0/c.-1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/0/c.-1.0.dat -------------------------------------------------------------------------------- /episode-12/save/1r/1/c.-1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/1/c.-1.1.dat -------------------------------------------------------------------------------- /episode-12/save/1r/1o/c.-1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/1o/c.-1.-4.dat -------------------------------------------------------------------------------- /episode-12/save/1r/1p/c.-1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/1p/c.-1.-3.dat -------------------------------------------------------------------------------- /episode-12/save/1r/1q/c.-1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/1q/c.-1.-2.dat -------------------------------------------------------------------------------- /episode-12/save/1r/1r/c.-1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/1r/c.-1.-1.dat -------------------------------------------------------------------------------- /episode-12/save/1r/2/c.-1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/2/c.-1.2.dat -------------------------------------------------------------------------------- /episode-12/save/1r/3/c.-1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/1r/3/c.-1.3.dat -------------------------------------------------------------------------------- /episode-12/save/2/0/c.2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/0/c.2.0.dat -------------------------------------------------------------------------------- /episode-12/save/2/1/c.2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/1/c.2.1.dat -------------------------------------------------------------------------------- /episode-12/save/2/1o/c.2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/1o/c.2.-4.dat -------------------------------------------------------------------------------- /episode-12/save/2/1p/c.2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/1p/c.2.-3.dat -------------------------------------------------------------------------------- /episode-12/save/2/1q/c.2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/1q/c.2.-2.dat -------------------------------------------------------------------------------- /episode-12/save/2/1r/c.2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/1r/c.2.-1.dat -------------------------------------------------------------------------------- /episode-12/save/2/2/c.2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/2/c.2.2.dat -------------------------------------------------------------------------------- /episode-12/save/2/3/c.2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/2/3/c.2.3.dat -------------------------------------------------------------------------------- /episode-12/save/3/0/c.3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/0/c.3.0.dat -------------------------------------------------------------------------------- /episode-12/save/3/1/c.3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/1/c.3.1.dat -------------------------------------------------------------------------------- /episode-12/save/3/1o/c.3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/1o/c.3.-4.dat -------------------------------------------------------------------------------- /episode-12/save/3/1p/c.3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/1p/c.3.-3.dat -------------------------------------------------------------------------------- /episode-12/save/3/1q/c.3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/1q/c.3.-2.dat -------------------------------------------------------------------------------- /episode-12/save/3/1r/c.3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/1r/c.3.-1.dat -------------------------------------------------------------------------------- /episode-12/save/3/2/c.3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/2/c.3.2.dat -------------------------------------------------------------------------------- /episode-12/save/3/3/c.3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/save/3/3/c.3.3.dat -------------------------------------------------------------------------------- /episode-12/textures/aqua_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/aqua_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/bedrock.png -------------------------------------------------------------------------------- /episode-12/textures/black_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/black_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/blue_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/blue_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/bookshelf.png -------------------------------------------------------------------------------- /episode-12/textures/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/bricks.png -------------------------------------------------------------------------------- /episode-12/textures/brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/brown_mushroom.png -------------------------------------------------------------------------------- /episode-12/textures/cactus_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/cactus_bottom.png -------------------------------------------------------------------------------- /episode-12/textures/cactus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/cactus_side.png -------------------------------------------------------------------------------- /episode-12/textures/cactus_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/cactus_top.png -------------------------------------------------------------------------------- /episode-12/textures/chest_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/chest_front.png -------------------------------------------------------------------------------- /episode-12/textures/chest_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/chest_side.png -------------------------------------------------------------------------------- /episode-12/textures/chest_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/chest_top.png -------------------------------------------------------------------------------- /episode-12/textures/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/clay.png -------------------------------------------------------------------------------- /episode-12/textures/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/coal_ore.png -------------------------------------------------------------------------------- /episode-12/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-12/textures/crafting_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/crafting_table_top.png -------------------------------------------------------------------------------- /episode-12/textures/crafting_table_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/crafting_table_x.png -------------------------------------------------------------------------------- /episode-12/textures/crafting_table_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/crafting_table_z.png -------------------------------------------------------------------------------- /episode-12/textures/crops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/crops.png -------------------------------------------------------------------------------- /episode-12/textures/cyan_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/cyan_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/dead_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/dead_bush.png -------------------------------------------------------------------------------- /episode-12/textures/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/diamond_block.png -------------------------------------------------------------------------------- /episode-12/textures/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/diamond_ore.png -------------------------------------------------------------------------------- /episode-12/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/dirt.png -------------------------------------------------------------------------------- /episode-12/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/fire.png -------------------------------------------------------------------------------- /episode-12/textures/furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/furnace_front.png -------------------------------------------------------------------------------- /episode-12/textures/furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/furnace_side.png -------------------------------------------------------------------------------- /episode-12/textures/furnace_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/furnace_y.png -------------------------------------------------------------------------------- /episode-12/textures/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/glass.png -------------------------------------------------------------------------------- /episode-12/textures/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/gold_block.png -------------------------------------------------------------------------------- /episode-12/textures/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/gold_ore.png -------------------------------------------------------------------------------- /episode-12/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/grass.png -------------------------------------------------------------------------------- /episode-12/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/grass_side.png -------------------------------------------------------------------------------- /episode-12/textures/gravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/gravel.png -------------------------------------------------------------------------------- /episode-12/textures/green_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/green_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/grey_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/grey_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/ice.png -------------------------------------------------------------------------------- /episode-12/textures/indigo_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/indigo_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/iron_block.png -------------------------------------------------------------------------------- /episode-12/textures/iron_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/iron_door.png -------------------------------------------------------------------------------- /episode-12/textures/iron_door_bottom_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/iron_door_bottom_half.png -------------------------------------------------------------------------------- /episode-12/textures/iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/iron_ore.png -------------------------------------------------------------------------------- /episode-12/textures/jukebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/jukebox.png -------------------------------------------------------------------------------- /episode-12/textures/jukebox_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/jukebox_top.png -------------------------------------------------------------------------------- /episode-12/textures/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/ladder.png -------------------------------------------------------------------------------- /episode-12/textures/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/lava.png -------------------------------------------------------------------------------- /episode-12/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/leaves.png -------------------------------------------------------------------------------- /episode-12/textures/lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/lever.png -------------------------------------------------------------------------------- /episode-12/textures/lime_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/lime_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/lit_furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/lit_furnace_front.png -------------------------------------------------------------------------------- /episode-12/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/log_side.png -------------------------------------------------------------------------------- /episode-12/textures/log_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/log_y.png -------------------------------------------------------------------------------- /episode-12/textures/magenta_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/magenta_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/mob_spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/mob_spawner.png -------------------------------------------------------------------------------- /episode-12/textures/mossy_cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/mossy_cobblestone.png -------------------------------------------------------------------------------- /episode-12/textures/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/obsidian.png -------------------------------------------------------------------------------- /episode-12/textures/off_redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/off_redstone_torch.png -------------------------------------------------------------------------------- /episode-12/textures/off_redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/off_redstone_torch_top.png -------------------------------------------------------------------------------- /episode-12/textures/orange_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/orange_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/pink_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/pink_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/planks.png -------------------------------------------------------------------------------- /episode-12/textures/purple_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/purple_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/rails.png -------------------------------------------------------------------------------- /episode-12/textures/red_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/red_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/red_mushroom.png -------------------------------------------------------------------------------- /episode-12/textures/red_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/red_rose.png -------------------------------------------------------------------------------- /episode-12/textures/redstone_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/redstone_ore.png -------------------------------------------------------------------------------- /episode-12/textures/redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/redstone_torch.png -------------------------------------------------------------------------------- /episode-12/textures/redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/redstone_torch_top.png -------------------------------------------------------------------------------- /episode-12/textures/redstone_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/redstone_wire.png -------------------------------------------------------------------------------- /episode-12/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/sand.png -------------------------------------------------------------------------------- /episode-12/textures/sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/sapling.png -------------------------------------------------------------------------------- /episode-12/textures/slab_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/slab_side.png -------------------------------------------------------------------------------- /episode-12/textures/slab_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/slab_y.png -------------------------------------------------------------------------------- /episode-12/textures/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/snow.png -------------------------------------------------------------------------------- /episode-12/textures/snowy_grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/snowy_grass_side.png -------------------------------------------------------------------------------- /episode-12/textures/soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/soil.png -------------------------------------------------------------------------------- /episode-12/textures/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/sponge.png -------------------------------------------------------------------------------- /episode-12/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/stone.png -------------------------------------------------------------------------------- /episode-12/textures/sugar_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/sugar_cane.png -------------------------------------------------------------------------------- /episode-12/textures/tnt_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/tnt_bottom.png -------------------------------------------------------------------------------- /episode-12/textures/tnt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/tnt_side.png -------------------------------------------------------------------------------- /episode-12/textures/tnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/tnt_top.png -------------------------------------------------------------------------------- /episode-12/textures/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/torch.png -------------------------------------------------------------------------------- /episode-12/textures/torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/torch_top.png -------------------------------------------------------------------------------- /episode-12/textures/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/unknown.png -------------------------------------------------------------------------------- /episode-12/textures/violet_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/violet_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/water.png -------------------------------------------------------------------------------- /episode-12/textures/white_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/white_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/wooden_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/wooden_door.png -------------------------------------------------------------------------------- /episode-12/textures/yellow_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/yellow_cloth.png -------------------------------------------------------------------------------- /episode-12/textures/yellow_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-12/textures/yellow_flower.png -------------------------------------------------------------------------------- /episode-13/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /episode-13/save/0/0/c.0.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/0/c.0.0.dat -------------------------------------------------------------------------------- /episode-13/save/0/1/c.0.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/1/c.0.1.dat -------------------------------------------------------------------------------- /episode-13/save/0/1o/c.0.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/1o/c.0.-4.dat -------------------------------------------------------------------------------- /episode-13/save/0/1p/c.0.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/1p/c.0.-3.dat -------------------------------------------------------------------------------- /episode-13/save/0/1q/c.0.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/1q/c.0.-2.dat -------------------------------------------------------------------------------- /episode-13/save/0/1r/c.0.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/1r/c.0.-1.dat -------------------------------------------------------------------------------- /episode-13/save/0/2/c.0.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/2/c.0.2.dat -------------------------------------------------------------------------------- /episode-13/save/0/3/c.0.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/0/3/c.0.3.dat -------------------------------------------------------------------------------- /episode-13/save/1/0/c.1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/0/c.1.0.dat -------------------------------------------------------------------------------- /episode-13/save/1/1/c.1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/1/c.1.1.dat -------------------------------------------------------------------------------- /episode-13/save/1/1o/c.1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/1o/c.1.-4.dat -------------------------------------------------------------------------------- /episode-13/save/1/1p/c.1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/1p/c.1.-3.dat -------------------------------------------------------------------------------- /episode-13/save/1/1q/c.1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/1q/c.1.-2.dat -------------------------------------------------------------------------------- /episode-13/save/1/1r/c.1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/1r/c.1.-1.dat -------------------------------------------------------------------------------- /episode-13/save/1/2/c.1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/2/c.1.2.dat -------------------------------------------------------------------------------- /episode-13/save/1/3/c.1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1/3/c.1.3.dat -------------------------------------------------------------------------------- /episode-13/save/1o/0/c.-4.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/0/c.-4.0.dat -------------------------------------------------------------------------------- /episode-13/save/1o/1/c.-4.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/1/c.-4.1.dat -------------------------------------------------------------------------------- /episode-13/save/1o/1o/c.-4.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/1o/c.-4.-4.dat -------------------------------------------------------------------------------- /episode-13/save/1o/1p/c.-4.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/1p/c.-4.-3.dat -------------------------------------------------------------------------------- /episode-13/save/1o/1q/c.-4.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/1q/c.-4.-2.dat -------------------------------------------------------------------------------- /episode-13/save/1o/1r/c.-4.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/1r/c.-4.-1.dat -------------------------------------------------------------------------------- /episode-13/save/1o/2/c.-4.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/2/c.-4.2.dat -------------------------------------------------------------------------------- /episode-13/save/1o/3/c.-4.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1o/3/c.-4.3.dat -------------------------------------------------------------------------------- /episode-13/save/1p/0/c.-3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/0/c.-3.0.dat -------------------------------------------------------------------------------- /episode-13/save/1p/1/c.-3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/1/c.-3.1.dat -------------------------------------------------------------------------------- /episode-13/save/1p/1o/c.-3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/1o/c.-3.-4.dat -------------------------------------------------------------------------------- /episode-13/save/1p/1p/c.-3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/1p/c.-3.-3.dat -------------------------------------------------------------------------------- /episode-13/save/1p/1q/c.-3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/1q/c.-3.-2.dat -------------------------------------------------------------------------------- /episode-13/save/1p/1r/c.-3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/1r/c.-3.-1.dat -------------------------------------------------------------------------------- /episode-13/save/1p/2/c.-3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/2/c.-3.2.dat -------------------------------------------------------------------------------- /episode-13/save/1p/3/c.-3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1p/3/c.-3.3.dat -------------------------------------------------------------------------------- /episode-13/save/1q/0/c.-2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/0/c.-2.0.dat -------------------------------------------------------------------------------- /episode-13/save/1q/1/c.-2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/1/c.-2.1.dat -------------------------------------------------------------------------------- /episode-13/save/1q/1o/c.-2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/1o/c.-2.-4.dat -------------------------------------------------------------------------------- /episode-13/save/1q/1p/c.-2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/1p/c.-2.-3.dat -------------------------------------------------------------------------------- /episode-13/save/1q/1q/c.-2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/1q/c.-2.-2.dat -------------------------------------------------------------------------------- /episode-13/save/1q/1r/c.-2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/1r/c.-2.-1.dat -------------------------------------------------------------------------------- /episode-13/save/1q/2/c.-2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/2/c.-2.2.dat -------------------------------------------------------------------------------- /episode-13/save/1q/3/c.-2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1q/3/c.-2.3.dat -------------------------------------------------------------------------------- /episode-13/save/1r/0/c.-1.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/0/c.-1.0.dat -------------------------------------------------------------------------------- /episode-13/save/1r/1/c.-1.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/1/c.-1.1.dat -------------------------------------------------------------------------------- /episode-13/save/1r/1o/c.-1.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/1o/c.-1.-4.dat -------------------------------------------------------------------------------- /episode-13/save/1r/1p/c.-1.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/1p/c.-1.-3.dat -------------------------------------------------------------------------------- /episode-13/save/1r/1q/c.-1.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/1q/c.-1.-2.dat -------------------------------------------------------------------------------- /episode-13/save/1r/1r/c.-1.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/1r/c.-1.-1.dat -------------------------------------------------------------------------------- /episode-13/save/1r/2/c.-1.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/2/c.-1.2.dat -------------------------------------------------------------------------------- /episode-13/save/1r/3/c.-1.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/1r/3/c.-1.3.dat -------------------------------------------------------------------------------- /episode-13/save/2/0/c.2.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/0/c.2.0.dat -------------------------------------------------------------------------------- /episode-13/save/2/1/c.2.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/1/c.2.1.dat -------------------------------------------------------------------------------- /episode-13/save/2/1o/c.2.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/1o/c.2.-4.dat -------------------------------------------------------------------------------- /episode-13/save/2/1p/c.2.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/1p/c.2.-3.dat -------------------------------------------------------------------------------- /episode-13/save/2/1q/c.2.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/1q/c.2.-2.dat -------------------------------------------------------------------------------- /episode-13/save/2/1r/c.2.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/1r/c.2.-1.dat -------------------------------------------------------------------------------- /episode-13/save/2/2/c.2.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/2/c.2.2.dat -------------------------------------------------------------------------------- /episode-13/save/2/3/c.2.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/2/3/c.2.3.dat -------------------------------------------------------------------------------- /episode-13/save/3/0/c.3.0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/0/c.3.0.dat -------------------------------------------------------------------------------- /episode-13/save/3/1/c.3.1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/1/c.3.1.dat -------------------------------------------------------------------------------- /episode-13/save/3/1o/c.3.-4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/1o/c.3.-4.dat -------------------------------------------------------------------------------- /episode-13/save/3/1p/c.3.-3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/1p/c.3.-3.dat -------------------------------------------------------------------------------- /episode-13/save/3/1q/c.3.-2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/1q/c.3.-2.dat -------------------------------------------------------------------------------- /episode-13/save/3/1r/c.3.-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/1r/c.3.-1.dat -------------------------------------------------------------------------------- /episode-13/save/3/2/c.3.2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/2/c.3.2.dat -------------------------------------------------------------------------------- /episode-13/save/3/3/c.3.3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/save/3/3/c.3.3.dat -------------------------------------------------------------------------------- /episode-13/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/src/__init__.py -------------------------------------------------------------------------------- /episode-13/src/chunk/__init__.py: -------------------------------------------------------------------------------- 1 | from src.chunk.common import CHUNK_HEIGHT, CHUNK_LENGTH, CHUNK_WIDTH 2 | from src.chunk.common import SUBCHUNK_HEIGHT, SUBCHUNK_LENGTH, SUBCHUNK_WIDTH 3 | 4 | __all__ = [ 5 | "CHUNK_WIDTH", 6 | "CHUNK_HEIGHT", 7 | "CHUNK_LENGTH", 8 | "SUBCHUNK_WIDTH", 9 | "SUBCHUNK_HEIGHT", 10 | "SUBCHUNK_LENGTH", 11 | ] 12 | -------------------------------------------------------------------------------- /episode-13/src/chunk/common.py: -------------------------------------------------------------------------------- 1 | CHUNK_WIDTH = 16 2 | CHUNK_HEIGHT = 128 3 | CHUNK_LENGTH = 16 4 | 5 | SUBCHUNK_WIDTH = 4 6 | SUBCHUNK_HEIGHT = 4 7 | SUBCHUNK_LENGTH = 4 8 | -------------------------------------------------------------------------------- /episode-13/src/entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/src/entity/__init__.py -------------------------------------------------------------------------------- /episode-13/src/physics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/src/physics/__init__.py -------------------------------------------------------------------------------- /episode-13/src/renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/src/renderer/__init__.py -------------------------------------------------------------------------------- /episode-13/textures/aqua_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/aqua_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/bedrock.png -------------------------------------------------------------------------------- /episode-13/textures/black_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/black_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/blue_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/blue_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/bookshelf.png -------------------------------------------------------------------------------- /episode-13/textures/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/bricks.png -------------------------------------------------------------------------------- /episode-13/textures/brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/brown_mushroom.png -------------------------------------------------------------------------------- /episode-13/textures/cactus_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/cactus_bottom.png -------------------------------------------------------------------------------- /episode-13/textures/cactus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/cactus_side.png -------------------------------------------------------------------------------- /episode-13/textures/cactus_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/cactus_top.png -------------------------------------------------------------------------------- /episode-13/textures/chest_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/chest_front.png -------------------------------------------------------------------------------- /episode-13/textures/chest_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/chest_side.png -------------------------------------------------------------------------------- /episode-13/textures/chest_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/chest_top.png -------------------------------------------------------------------------------- /episode-13/textures/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/clay.png -------------------------------------------------------------------------------- /episode-13/textures/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/coal_ore.png -------------------------------------------------------------------------------- /episode-13/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-13/textures/crafting_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/crafting_table_top.png -------------------------------------------------------------------------------- /episode-13/textures/crafting_table_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/crafting_table_x.png -------------------------------------------------------------------------------- /episode-13/textures/crafting_table_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/crafting_table_z.png -------------------------------------------------------------------------------- /episode-13/textures/crops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/crops.png -------------------------------------------------------------------------------- /episode-13/textures/cyan_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/cyan_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/dead_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/dead_bush.png -------------------------------------------------------------------------------- /episode-13/textures/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/diamond_block.png -------------------------------------------------------------------------------- /episode-13/textures/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/diamond_ore.png -------------------------------------------------------------------------------- /episode-13/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/dirt.png -------------------------------------------------------------------------------- /episode-13/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/fire.png -------------------------------------------------------------------------------- /episode-13/textures/furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/furnace_front.png -------------------------------------------------------------------------------- /episode-13/textures/furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/furnace_side.png -------------------------------------------------------------------------------- /episode-13/textures/furnace_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/furnace_y.png -------------------------------------------------------------------------------- /episode-13/textures/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/glass.png -------------------------------------------------------------------------------- /episode-13/textures/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/gold_block.png -------------------------------------------------------------------------------- /episode-13/textures/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/gold_ore.png -------------------------------------------------------------------------------- /episode-13/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/grass.png -------------------------------------------------------------------------------- /episode-13/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/grass_side.png -------------------------------------------------------------------------------- /episode-13/textures/gravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/gravel.png -------------------------------------------------------------------------------- /episode-13/textures/green_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/green_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/grey_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/grey_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/ice.png -------------------------------------------------------------------------------- /episode-13/textures/indigo_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/indigo_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/iron_block.png -------------------------------------------------------------------------------- /episode-13/textures/iron_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/iron_door.png -------------------------------------------------------------------------------- /episode-13/textures/iron_door_bottom_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/iron_door_bottom_half.png -------------------------------------------------------------------------------- /episode-13/textures/iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/iron_ore.png -------------------------------------------------------------------------------- /episode-13/textures/jukebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/jukebox.png -------------------------------------------------------------------------------- /episode-13/textures/jukebox_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/jukebox_top.png -------------------------------------------------------------------------------- /episode-13/textures/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/ladder.png -------------------------------------------------------------------------------- /episode-13/textures/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/lava.png -------------------------------------------------------------------------------- /episode-13/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/leaves.png -------------------------------------------------------------------------------- /episode-13/textures/lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/lever.png -------------------------------------------------------------------------------- /episode-13/textures/lime_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/lime_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/lit_furnace_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/lit_furnace_front.png -------------------------------------------------------------------------------- /episode-13/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/log_side.png -------------------------------------------------------------------------------- /episode-13/textures/log_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/log_y.png -------------------------------------------------------------------------------- /episode-13/textures/magenta_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/magenta_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/mob_spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/mob_spawner.png -------------------------------------------------------------------------------- /episode-13/textures/mossy_cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/mossy_cobblestone.png -------------------------------------------------------------------------------- /episode-13/textures/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/obsidian.png -------------------------------------------------------------------------------- /episode-13/textures/off_redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/off_redstone_torch.png -------------------------------------------------------------------------------- /episode-13/textures/off_redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/off_redstone_torch_top.png -------------------------------------------------------------------------------- /episode-13/textures/orange_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/orange_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/pink_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/pink_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/planks.png -------------------------------------------------------------------------------- /episode-13/textures/purple_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/purple_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/rails.png -------------------------------------------------------------------------------- /episode-13/textures/red_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/red_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/red_mushroom.png -------------------------------------------------------------------------------- /episode-13/textures/red_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/red_rose.png -------------------------------------------------------------------------------- /episode-13/textures/redstone_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/redstone_ore.png -------------------------------------------------------------------------------- /episode-13/textures/redstone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/redstone_torch.png -------------------------------------------------------------------------------- /episode-13/textures/redstone_torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/redstone_torch_top.png -------------------------------------------------------------------------------- /episode-13/textures/redstone_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/redstone_wire.png -------------------------------------------------------------------------------- /episode-13/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/sand.png -------------------------------------------------------------------------------- /episode-13/textures/sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/sapling.png -------------------------------------------------------------------------------- /episode-13/textures/slab_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/slab_side.png -------------------------------------------------------------------------------- /episode-13/textures/slab_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/slab_y.png -------------------------------------------------------------------------------- /episode-13/textures/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/snow.png -------------------------------------------------------------------------------- /episode-13/textures/snowy_grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/snowy_grass_side.png -------------------------------------------------------------------------------- /episode-13/textures/soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/soil.png -------------------------------------------------------------------------------- /episode-13/textures/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/sponge.png -------------------------------------------------------------------------------- /episode-13/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/stone.png -------------------------------------------------------------------------------- /episode-13/textures/sugar_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/sugar_cane.png -------------------------------------------------------------------------------- /episode-13/textures/tnt_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/tnt_bottom.png -------------------------------------------------------------------------------- /episode-13/textures/tnt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/tnt_side.png -------------------------------------------------------------------------------- /episode-13/textures/tnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/tnt_top.png -------------------------------------------------------------------------------- /episode-13/textures/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/torch.png -------------------------------------------------------------------------------- /episode-13/textures/torch_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/torch_top.png -------------------------------------------------------------------------------- /episode-13/textures/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/unknown.png -------------------------------------------------------------------------------- /episode-13/textures/violet_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/violet_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/water.png -------------------------------------------------------------------------------- /episode-13/textures/white_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/white_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/wooden_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/wooden_door.png -------------------------------------------------------------------------------- /episode-13/textures/yellow_cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/yellow_cloth.png -------------------------------------------------------------------------------- /episode-13/textures/yellow_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-13/textures/yellow_flower.png -------------------------------------------------------------------------------- /episode-3/frag.glsl: -------------------------------------------------------------------------------- 1 | #version 330 // specify we are indeed using modern opengl 2 | 3 | out vec4 fragment_colour; // output of our shader 4 | 5 | in vec3 local_position; // interpolated vertex position 6 | 7 | void main(void) { 8 | fragment_colour = vec4(local_position / 2.0 + 0.5, 1.0); // set the output colour based on the vertex position 9 | } -------------------------------------------------------------------------------- /episode-3/vert.glsl: -------------------------------------------------------------------------------- 1 | #version 330 // specify we are indeed using modern opengl 2 | 3 | layout(location = 0) in vec3 vertex_position; // vertex position attribute 4 | 5 | out vec3 local_position; // interpolated vertex position 6 | 7 | void main(void) { 8 | local_position = vertex_position; 9 | gl_Position = vec4(vertex_position, 1.0); // set vertex position 10 | } -------------------------------------------------------------------------------- /episode-4/frag.glsl: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | out vec4 fragment_colour; 4 | 5 | in vec3 local_position; 6 | 7 | void main(void) { 8 | fragment_colour = vec4(local_position / 2.0 + 0.5, 1.0); 9 | } 10 | -------------------------------------------------------------------------------- /episode-4/vert.glsl: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | layout(location = 0) in vec3 vertex_position; 4 | 5 | out vec3 local_position; 6 | uniform mat4 matrix; // create matrix uniform variable 7 | 8 | void main(void) { 9 | local_position = vertex_position; 10 | gl_Position = matrix * vec4(vertex_position, 1.0); // multiply matrix by vertex_position vector 11 | } 12 | -------------------------------------------------------------------------------- /episode-5/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-5/textures/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/daisy.png -------------------------------------------------------------------------------- /episode-5/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/dirt.png -------------------------------------------------------------------------------- /episode-5/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/grass.png -------------------------------------------------------------------------------- /episode-5/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/grass_side.png -------------------------------------------------------------------------------- /episode-5/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/leaves.png -------------------------------------------------------------------------------- /episode-5/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/log_side.png -------------------------------------------------------------------------------- /episode-5/textures/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/log_top.png -------------------------------------------------------------------------------- /episode-5/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/planks.png -------------------------------------------------------------------------------- /episode-5/textures/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/rose.png -------------------------------------------------------------------------------- /episode-5/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/sand.png -------------------------------------------------------------------------------- /episode-5/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-5/textures/stone.png -------------------------------------------------------------------------------- /episode-6/frag.glsl: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | out vec4 fragment_colour; 4 | 5 | uniform sampler2DArray texture_array_sampler; 6 | 7 | in vec3 local_position; 8 | in vec3 interpolated_tex_coords; 9 | 10 | void main(void) { 11 | fragment_colour = texture(texture_array_sampler, interpolated_tex_coords); 12 | } -------------------------------------------------------------------------------- /episode-6/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-6/textures/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/daisy.png -------------------------------------------------------------------------------- /episode-6/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/dirt.png -------------------------------------------------------------------------------- /episode-6/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/grass.png -------------------------------------------------------------------------------- /episode-6/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/grass_side.png -------------------------------------------------------------------------------- /episode-6/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/leaves.png -------------------------------------------------------------------------------- /episode-6/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/log_side.png -------------------------------------------------------------------------------- /episode-6/textures/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/log_top.png -------------------------------------------------------------------------------- /episode-6/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/planks.png -------------------------------------------------------------------------------- /episode-6/textures/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/rose.png -------------------------------------------------------------------------------- /episode-6/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/sand.png -------------------------------------------------------------------------------- /episode-6/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-6/textures/stone.png -------------------------------------------------------------------------------- /episode-7/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-7/textures/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/daisy.png -------------------------------------------------------------------------------- /episode-7/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/dirt.png -------------------------------------------------------------------------------- /episode-7/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/grass.png -------------------------------------------------------------------------------- /episode-7/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/grass_side.png -------------------------------------------------------------------------------- /episode-7/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/leaves.png -------------------------------------------------------------------------------- /episode-7/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/log_side.png -------------------------------------------------------------------------------- /episode-7/textures/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/log_top.png -------------------------------------------------------------------------------- /episode-7/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/planks.png -------------------------------------------------------------------------------- /episode-7/textures/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/rose.png -------------------------------------------------------------------------------- /episode-7/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/sand.png -------------------------------------------------------------------------------- /episode-7/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-7/textures/stone.png -------------------------------------------------------------------------------- /episode-8/frag.glsl: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | out vec4 fragment_colour; 4 | 5 | uniform sampler2DArray texture_array_sampler; 6 | 7 | in vec3 local_position; 8 | in vec3 interpolated_tex_coords; 9 | in float interpolated_shading_value; 10 | 11 | void main(void) { 12 | fragment_colour = texture(texture_array_sampler, interpolated_tex_coords) * interpolated_shading_value; 13 | } -------------------------------------------------------------------------------- /episode-8/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-8/textures/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/daisy.png -------------------------------------------------------------------------------- /episode-8/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/dirt.png -------------------------------------------------------------------------------- /episode-8/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/grass.png -------------------------------------------------------------------------------- /episode-8/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/grass_side.png -------------------------------------------------------------------------------- /episode-8/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/leaves.png -------------------------------------------------------------------------------- /episode-8/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/log_side.png -------------------------------------------------------------------------------- /episode-8/textures/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/log_top.png -------------------------------------------------------------------------------- /episode-8/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/planks.png -------------------------------------------------------------------------------- /episode-8/textures/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/rose.png -------------------------------------------------------------------------------- /episode-8/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/sand.png -------------------------------------------------------------------------------- /episode-8/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-8/textures/stone.png -------------------------------------------------------------------------------- /episode-9/textures/cactus_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/cactus_bottom.png -------------------------------------------------------------------------------- /episode-9/textures/cactus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/cactus_side.png -------------------------------------------------------------------------------- /episode-9/textures/cactus_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/cactus_top.png -------------------------------------------------------------------------------- /episode-9/textures/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/cobblestone.png -------------------------------------------------------------------------------- /episode-9/textures/daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/daisy.png -------------------------------------------------------------------------------- /episode-9/textures/dead_bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/dead_bush.png -------------------------------------------------------------------------------- /episode-9/textures/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/dirt.png -------------------------------------------------------------------------------- /episode-9/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/grass.png -------------------------------------------------------------------------------- /episode-9/textures/grass_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/grass_side.png -------------------------------------------------------------------------------- /episode-9/textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/leaves.png -------------------------------------------------------------------------------- /episode-9/textures/log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/log_side.png -------------------------------------------------------------------------------- /episode-9/textures/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/log_top.png -------------------------------------------------------------------------------- /episode-9/textures/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/planks.png -------------------------------------------------------------------------------- /episode-9/textures/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/rose.png -------------------------------------------------------------------------------- /episode-9/textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/sand.png -------------------------------------------------------------------------------- /episode-9/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/episode-9/textures/stone.png -------------------------------------------------------------------------------- /eyecandy/creeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obiwac/python-minecraft-clone/d482ff660326fc9050d86cad5443f83f415eb3db/eyecandy/creeper.png -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- 1 | # This is separate from a pyproject.toml file as we want this configuration to apply to all projects in the repository. 2 | 3 | line-length = 120 4 | 5 | [lint] 6 | ignore = ["E402", "F405", "F403"] 7 | 8 | [format] 9 | indent-style = "tab" 10 | line-ending = "lf" 11 | --------------------------------------------------------------------------------