TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockMaterial.cs
2021-04-16 01:40:30 +02:00

12 lines
No EOL
220 B
C#

namespace GamecraftModdingAPI.Blocks
{
public enum BlockMaterial : byte
{
Default = byte.MaxValue,
SteelBodywork = 0,
RigidSteel,
CarbonFiber,
Plastic,
Wood
}
}