TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockMaterial.cs

12 lines
No EOL
220 B
C#

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