Made a Gui and created a dropdown menu to select block

This commit is contained in:
2020-06-28 06:14:14 -06:00
parent b6f39d8f12
commit a2ca087156
594 changed files with 6768 additions and 17 deletions

View File

@@ -1,15 +1,15 @@
namespace Collector.Dimension
{
public enum Blocks
public enum Blocks : byte
{
BlockAir,
BlockGrass,
BlockWood,
BlockStone,
BlockSnow,
BlockSand,
BlockRoof,
BlockWall,
BlockWater
BlockAir = 0,
BlockGrass = 1,
BlockWood = 2,
BlockStone = 3,
BlockSnow = 4,
BlockSand = 5,
BlockRoof = 6,
BlockWall = 7,
BlockWater = 8
}
}