12 lines
220 B
C#
12 lines
220 B
C#
|
namespace GamecraftModdingAPI.Blocks
|
||
|
{
|
||
|
public enum BlockMaterial : byte
|
||
|
{
|
||
|
Default = byte.MaxValue,
|
||
|
SteelBodywork = 0,
|
||
|
RigidSteel,
|
||
|
CarbonFiber,
|
||
|
Plastic,
|
||
|
Wood
|
||
|
}
|
||
|
}
|