Major refactor and organization, optimizations to chunk, world and renderer

This commit is contained in:
max
2026-03-24 22:31:40 +01:00
parent dbc546fd0e
commit eb6294c09e
25 changed files with 410 additions and 441 deletions

44
Graphics/Textures.cs Normal file
View File

@@ -0,0 +1,44 @@
namespace Voxel
{
public enum Textures : byte
{
GrassTop,
Stone,
Dirt,
GrassSide,
OakPlanks,
SmoothStoneSlab,
SmoothStone,
Bricks,
TntSide,
TntTop,
TntBottom,
Cobweb,
Rose,
Dandelion,
Water,
OakSapling,
Cobblestone,
Bedrock,
Sand,
Gravel,
OakSide,
OakTop,
IronBlock,
GoldBlock,
DiamondBlock,
EmeraldBlock,
RedstoneBlock,
none0,
RedMushroom,
BrownMushroom,
JungleSapling,
none1,
GoldOre,
IronOre,
CoalOre,
Bookshelf,
MossyCobblestone,
Obsidian,
}
}