├── .gitignore ├── 1 - Lecture ├── 230111 - Rust Basic + Make Minecraft, Week 0.pdf ├── 230118 - Rust Basic + Make Minecraft, Week 1.pdf ├── 230125 - Rust Basic + Make Minecraft, Week 2.pdf ├── 230301 - Rust Basic + Make Minecraft, Week 5.pdf └── 230310 - Rust Basic + Make Minecraft, Week 6.pdf ├── 2 - Example ├── 230510 - Rust Basic + Make Minecraft, Week 9 │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── 230718 - Rust Basic + Make Minecraft, Week 10 │ ├── Cargo.toml │ └── src │ │ ├── debugging.rs │ │ ├── main.rs │ │ └── renderer.rs ├── 230801 - Rust Basic + Make Minecraft, Week 11 │ └── Cargo.toml ├── 240124 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ ├── diffuse.vert │ │ ├── frag.frag │ │ └── vert.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240131 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ ├── diffuse.vert │ │ ├── frag.frag │ │ └── vert.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240216 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ ├── diffuse.vert │ │ ├── frag.frag │ │ └── vert.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240223 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── block_texture_sides.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ ├── diffuse.vert │ │ ├── frag.frag │ │ └── vert.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240228 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── block_texture_sides.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ └── diffuse.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240306 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── aabb.rs │ │ ├── block_texture_sides.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── collisions.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ └── diffuse.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240313 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── aabb.rs │ │ ├── block_texture_sides.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ └── diffuse.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240321 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── aabb.rs │ │ ├── block_texture_sides.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── diffuse.frag │ │ └── diffuse.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ └── util.rs ├── 240407 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ └── src │ │ ├── aabb.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ ├── components.rs │ │ ├── mod.rs │ │ ├── resources.rs │ │ └── systems.rs │ │ ├── input.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ ├── voxel.frag │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs ├── 240428 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ └── icons.png ├── 240504 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240512 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240519 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240601 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240630 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240710 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240713 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240720 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240731 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── fps_counter.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240807 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components.rs │ │ │ ├── mod.rs │ │ │ ├── resources.rs │ │ │ └── systems.rs │ │ ├── fps_counter.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240809 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── drawing.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ ├── resources │ │ │ │ └── mod.rs │ │ │ └── systems │ │ │ │ ├── input.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ └── player.rs │ │ ├── fps_counter.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240812 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ └── player.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240821 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ └── player.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 240925 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 241004 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 241106 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 241120 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── chunk_loading.rs │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 241127 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── chunk_loading.rs │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── bedrock.png │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ ├── stone.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 241211 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── chunk_loading.rs │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── bedrock.png │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ ├── stone.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 250108 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── chunk_loading.rs │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── bedrock.png │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ ├── stone.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png ├── 250115 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ │ ├── aabb.rs │ │ ├── ambient_occlusion.rs │ │ ├── block_texture_faces.rs │ │ ├── chunk.rs │ │ ├── chunk_manager.rs │ │ ├── constants.rs │ │ ├── debugging.rs │ │ ├── ecs │ │ │ ├── components │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── systems │ │ │ │ ├── chunk_loading.rs │ │ │ │ ├── fps_counter.rs │ │ │ │ ├── hand.rs │ │ │ │ ├── input.rs │ │ │ │ ├── inventory.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── physics.rs │ │ │ │ ├── player.rs │ │ │ │ └── rendering.rs │ │ ├── gui.rs │ │ ├── input.rs │ │ ├── inventory │ │ │ ├── item.rs │ │ │ └── mod.rs │ │ ├── main.rs │ │ ├── main_hand.rs │ │ ├── particle_system.rs │ │ ├── physics.rs │ │ ├── player.rs │ │ ├── raycast.rs │ │ ├── renderer.rs │ │ ├── shader.rs │ │ ├── shaders │ │ │ ├── gui.frag │ │ │ ├── gui.vert │ │ │ ├── hand.frag │ │ │ ├── hand.vert │ │ │ ├── item.frag │ │ │ ├── item.vert │ │ │ ├── outline.frag │ │ │ ├── outline.vert │ │ │ ├── particle.frag │ │ │ ├── particle.vert │ │ │ ├── voxel.frag │ │ │ └── voxel.vert │ │ ├── shapes.rs │ │ ├── texture.rs │ │ ├── texture_pack.rs │ │ ├── timer.rs │ │ ├── types.rs │ │ ├── util.rs │ │ └── window.rs │ └── textures │ │ ├── blocks │ │ ├── bedrock.png │ │ ├── cobblestone.png │ │ ├── debug.png │ │ ├── debug2.png │ │ ├── diamond_block.png │ │ ├── diamond_ore.png │ │ ├── dirt.png │ │ ├── emerald_ore.png │ │ ├── glass.png │ │ ├── glowstone.png │ │ ├── gold_block.png │ │ ├── gold_ore.png │ │ ├── grass_block_side.png │ │ ├── grass_block_top.png │ │ ├── oak_leaves.png │ │ ├── oak_log.png │ │ ├── oak_log_top.png │ │ ├── oak_planks.png │ │ ├── obsidian.png │ │ ├── stone.png │ │ └── tnt.png │ │ └── gui │ │ ├── icons.png │ │ └── widgets.png └── 250217 - Rust Basic + Make Minecraft, Week X │ ├── Cargo.toml │ ├── src │ ├── aabb.rs │ ├── ambient_occlusion.rs │ ├── block_texture_faces.rs │ ├── chunk.rs │ ├── chunk_manager.rs │ ├── constants.rs │ ├── debugging.rs │ ├── ecs │ │ ├── components │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── systems │ │ │ ├── chunk_loading.rs │ │ │ ├── fps_counter.rs │ │ │ ├── hand.rs │ │ │ ├── input.rs │ │ │ ├── inventory.rs │ │ │ ├── mod.rs │ │ │ ├── physics.rs │ │ │ ├── player.rs │ │ │ └── rendering.rs │ ├── gui.rs │ ├── input.rs │ ├── inventory │ │ ├── item.rs │ │ └── mod.rs │ ├── main.rs │ ├── main_hand.rs │ ├── particle_system.rs │ ├── physics.rs │ ├── player.rs │ ├── raycast.rs │ ├── renderer.rs │ ├── shader.rs │ ├── shaders │ │ ├── gui.frag │ │ ├── gui.vert │ │ ├── hand.frag │ │ ├── hand.vert │ │ ├── item.frag │ │ ├── item.vert │ │ ├── outline.frag │ │ ├── outline.vert │ │ ├── particle.frag │ │ ├── particle.vert │ │ ├── voxel.frag │ │ └── voxel.vert │ ├── shapes.rs │ ├── texture.rs │ ├── texture_pack.rs │ ├── timer.rs │ ├── types.rs │ ├── util.rs │ └── window.rs │ └── textures │ ├── blocks │ ├── bedrock.png │ ├── cobblestone.png │ ├── debug.png │ ├── debug2.png │ ├── diamond_block.png │ ├── diamond_ore.png │ ├── dirt.png │ ├── emerald_ore.png │ ├── glass.png │ ├── glowstone.png │ ├── gold_block.png │ ├── gold_ore.png │ ├── grass_block_side.png │ ├── grass_block_top.png │ ├── oak_leaves.png │ ├── oak_log.png │ ├── oak_log_top.png │ ├── oak_planks.png │ ├── obsidian.png │ ├── stone.png │ └── tnt.png │ └── gui │ ├── icons.png │ └── widgets.png ├── 3 - Assignment ├── 230118 - Rust Basic + Make Minecraft, Week 1 │ ├── README.md │ ├── prob1 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob2 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ └── prob3 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── lib.rs ├── 230125 - Rust Basic + Make Minecraft, Week 2 │ ├── README.md │ ├── prob1 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob2 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob3 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob4 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob5 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ ├── lib.rs │ │ │ └── linked_list.rs │ └── prob6 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── lib.rs ├── 230301 - Rust Basic + Make Minecraft, Week 5 │ ├── README.md │ ├── prob1 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob2 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ └── prob3 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── lib.rs └── 230310 - Rust Basic + Make Minecraft, Week 6 │ ├── README.md │ ├── prob1 │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── invalid │ │ ├── Cargo.toml │ │ ├── comma-sep.rs │ │ ├── double-commas.rs │ │ ├── leading-comma.rs │ │ ├── missing-argument.rs │ │ ├── no-comma.rs │ │ ├── only-arrow.rs │ │ ├── only-comma.rs │ │ ├── single-argument.rs │ │ ├── triple-arguments.rs │ │ └── two-arrows.rs │ │ └── lib.rs │ ├── prob2 │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs │ └── prob3 │ ├── Cargo.toml │ ├── README.md │ └── src │ └── lib.rs ├── 4 - Solution ├── 230118 - Rust Basic + Make Minecraft, Week 1 │ ├── README.md │ ├── prob1 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob2 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ └── prob3 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── lib.rs ├── 230125 - Rust Basic + Make Minecraft, Week 2 │ ├── README.md │ ├── prob1 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob2 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob3 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob4 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob5 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ ├── lib.rs │ │ │ └── linked_list.rs │ └── prob6 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── lib.rs ├── 230301 - Rust Basic + Make Minecraft, Week 5 │ ├── README.md │ ├── prob1 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── prob2 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ └── prob3 │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── lib.rs └── 230310 - Rust Basic + Make Minecraft, Week 6 │ ├── README.md │ ├── prob1 │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── invalid │ │ ├── Cargo.toml │ │ ├── comma-sep.rs │ │ ├── double-commas.rs │ │ ├── leading-comma.rs │ │ ├── missing-argument.rs │ │ ├── no-comma.rs │ │ ├── only-arrow.rs │ │ ├── only-comma.rs │ │ ├── single-argument.rs │ │ ├── triple-arguments.rs │ │ └── two-arrows.rs │ │ └── lib.rs │ ├── prob2 │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs │ └── prob3 │ ├── Cargo.toml │ ├── README.md │ └── src │ └── lib.rs ├── LICENSE └── README.md /1 - Lecture/230111 - Rust Basic + Make Minecraft, Week 0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/1 - Lecture/230111 - Rust Basic + Make Minecraft, Week 0.pdf -------------------------------------------------------------------------------- /1 - Lecture/230118 - Rust Basic + Make Minecraft, Week 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/1 - Lecture/230118 - Rust Basic + Make Minecraft, Week 1.pdf -------------------------------------------------------------------------------- /1 - Lecture/230125 - Rust Basic + Make Minecraft, Week 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/1 - Lecture/230125 - Rust Basic + Make Minecraft, Week 2.pdf -------------------------------------------------------------------------------- /1 - Lecture/230301 - Rust Basic + Make Minecraft, Week 5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/1 - Lecture/230301 - Rust Basic + Make Minecraft, Week 5.pdf -------------------------------------------------------------------------------- /1 - Lecture/230310 - Rust Basic + Make Minecraft, Week 6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/1 - Lecture/230310 - Rust Basic + Make Minecraft, Week 6.pdf -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240124 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240124 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240131 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240131 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240216 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240216 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240223 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240223 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240228 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240228 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240306 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240306 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240313 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240313 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240321 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240321 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/diamond_block.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_side.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/grass_block_top.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/oak_log_top.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240407 - Rust Basic + Make Minecraft, Week X/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240407 - Rust Basic + Make Minecraft, Week X/src/types.rs: -------------------------------------------------------------------------------- 1 | pub type UVCoords = (f32, f32, f32, f32); 2 | pub type UVFaces = (UVCoords, UVCoords, UVCoords, UVCoords, UVCoords, UVCoords); 3 | -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/src/types.rs: -------------------------------------------------------------------------------- 1 | pub type UVCoords = (f32, f32, f32, f32); 2 | pub type UVFaces = (UVCoords, UVCoords, UVCoords, UVCoords, UVCoords, UVCoords); 3 | -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/cobblestone.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/diamond_ore.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/emerald_ore.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log_top.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240428 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/src/types.rs: -------------------------------------------------------------------------------- 1 | pub type UVCoords = (f32, f32, f32, f32); 2 | pub type UVFaces = (UVCoords, UVCoords, UVCoords, UVCoords, UVCoords, UVCoords); 3 | -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240504 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240512 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240519 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240601 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240630 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240710 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240713 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240720 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240731 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240807 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod resources; 3 | pub mod systems; 4 | -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240809 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240812 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240821 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/240925 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241004 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241106 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241120 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241127 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/241211 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250108 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250115 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/src/ecs/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod components; 2 | pub mod systems; 3 | -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/src/shaders/outline.frag: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | 3 | out vec4 Color; 4 | 5 | void main() { 6 | Color = vec4(0.0, 0.0, 0.0, 0.35); 7 | } 8 | -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/debug2.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/dirt.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/glass.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_leaves.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_log.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/oak_planks.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/obsidian.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/stone.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/blocks/tnt.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/gui/icons.png -------------------------------------------------------------------------------- /2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/2023-UNIST-Rust-Minecraft/5fe159f2cad47df1a4eb17ce5fff983f813aa851/2 - Example/250217 - Rust Basic + Make Minecraft, Week X/textures/gui/widgets.png -------------------------------------------------------------------------------- /3 - Assignment/230118 - Rust Basic + Make Minecraft, Week 1/README.md: -------------------------------------------------------------------------------- 1 | # Assignment 1 2 | 3 | You should pass all tests by running `cargo test`. 4 | 5 | 1. [Role Playing Game](./prob1) 6 | 7 | 2. [RPN Calculator](./prob2) 8 | 9 | 3. [Minesweeper](./prob3) 10 | -------------------------------------------------------------------------------- /3 - Assignment/230118 - Rust Basic + Make Minecraft, Week 1/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230118 - Rust Basic + Make Minecraft, Week 1/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230118 - Rust Basic + Make Minecraft, Week 1/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230125 - Rust Basic + Make Minecraft, Week 2/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230125 - Rust Basic + Make Minecraft, Week 2/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230125 - Rust Basic + Make Minecraft, Week 2/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230125 - Rust Basic + Make Minecraft, Week 2/prob4/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob4" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230301 - Rust Basic + Make Minecraft, Week 5/README.md: -------------------------------------------------------------------------------- 1 | # Assignment 3 2 | 3 | You should pass all tests by running `cargo test`. 4 | 5 | 1. [PaaS I/O](./prob1) 6 | 7 | 2. [Book Store](./prob2) 8 | 9 | 3. [React](./prob3) 10 | -------------------------------------------------------------------------------- /3 - Assignment/230301 - Rust Basic + Make Minecraft, Week 5/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230301 - Rust Basic + Make Minecraft, Week 5/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230301 - Rust Basic + Make Minecraft, Week 5/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/README.md: -------------------------------------------------------------------------------- 1 | # Assignment 4 2 | 3 | You should pass all tests by running `cargo test`. 4 | 5 | 1. [hashmap!](./prob1) 6 | 7 | 2. [Pangram](./prob2) 8 | 9 | 3. [Binary Search](./prob3) 10 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/comma-sep.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // using only commas is invalid 6 | let _hm: HashMap<_, _> = hashmap!('a', 1); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/leading-comma.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // leading commas are not valid 6 | let _hm: HashMap<_, _> = hashmap!(, 'a' => 2); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/only-arrow.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a single random arrow is not valid 6 | let _hm: HashMap<(), ()> = hashmap!(=>); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/only-comma.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a single random comma is not valid 6 | let _hm: HashMap<(), ()> = hashmap!(,); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/single-argument.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a single argument is invalid 6 | let _hm: HashMap<_, _> = hashmap!('a'); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/triple-arguments.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // three arguments are invalid 6 | hashmap!('a' => 1, 'b'); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/two-arrows.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a trailing => isn't valid either 6 | hashmap!('a' => 2, =>); 7 | } 8 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /3 - Assignment/230310 - Rust Basic + Make Minecraft, Week 6/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230118 - Rust Basic + Make Minecraft, Week 1/README.md: -------------------------------------------------------------------------------- 1 | # Assignment 1 - Solution 2 | 3 | You should pass all tests by running `cargo test`. 4 | 5 | 1. [Role Playing Game](./prob1) 6 | 7 | 2. [RPN Calculator](./prob2) 8 | 9 | 3. [Minesweeper](./prob3) 10 | -------------------------------------------------------------------------------- /4 - Solution/230118 - Rust Basic + Make Minecraft, Week 1/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230118 - Rust Basic + Make Minecraft, Week 1/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230118 - Rust Basic + Make Minecraft, Week 1/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230125 - Rust Basic + Make Minecraft, Week 2/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230125 - Rust Basic + Make Minecraft, Week 2/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230125 - Rust Basic + Make Minecraft, Week 2/prob4/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob4" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230301 - Rust Basic + Make Minecraft, Week 5/README.md: -------------------------------------------------------------------------------- 1 | # Assignment 3 - Solution 2 | 3 | You should pass all tests by running `cargo test`. 4 | 5 | 1. [PaaS I/O](./prob1) 6 | 7 | 2. [Book Store](./prob2) 8 | 9 | 3. [React](./prob3) 10 | -------------------------------------------------------------------------------- /4 - Solution/230301 - Rust Basic + Make Minecraft, Week 5/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230301 - Rust Basic + Make Minecraft, Week 5/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230301 - Rust Basic + Make Minecraft, Week 5/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/README.md: -------------------------------------------------------------------------------- 1 | # Assignment 4 - Solution 2 | 3 | You should pass all tests by running `cargo test`. 4 | 5 | 1. [hashmap!](./prob1) 6 | 7 | 2. [Pangram](./prob2) 8 | 9 | 3. [Binary Search](./prob3) 10 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob1" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/comma-sep.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // using only commas is invalid 6 | let _hm: HashMap<_, _> = hashmap!('a', 1); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/leading-comma.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // leading commas are not valid 6 | let _hm: HashMap<_, _> = hashmap!(, 'a' => 2); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/only-arrow.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a single random arrow is not valid 6 | let _hm: HashMap<(), ()> = hashmap!(=>); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/only-comma.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a single random comma is not valid 6 | let _hm: HashMap<(), ()> = hashmap!(,); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/single-argument.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a single argument is invalid 6 | let _hm: HashMap<_, _> = hashmap!('a'); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/triple-arguments.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // three arguments are invalid 6 | hashmap!('a' => 1, 'b'); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob1/src/invalid/two-arrows.rs: -------------------------------------------------------------------------------- 1 | use macros::hashmap; 2 | use std::collections::HashMap; 3 | 4 | fn main() { 5 | // a trailing => isn't valid either 6 | hashmap!('a' => 2, =>); 7 | } 8 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob2" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | -------------------------------------------------------------------------------- /4 - Solution/230310 - Rust Basic + Make Minecraft, Week 6/prob3/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "prob3" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | --------------------------------------------------------------------------------