NorbiPeti
619a5003cf
Save game details were changed, they may not work properly Game mode change event no longer sends game data, needs fixing
35 lines
No EOL
866 B
C#
35 lines
No EOL
866 B
C#
namespace TechbloxModdingAPI.Blocks
|
|
{
|
|
public enum BlockMaterial : byte
|
|
{
|
|
Default = byte.MaxValue,
|
|
SteelBodywork = 0,
|
|
RigidSteel,
|
|
CarbonFiber,
|
|
Plastic,
|
|
Wood = 6,
|
|
RigidSteelPainted,
|
|
RigidSteelRustedPaint,
|
|
RigidSteelHeavyRust,
|
|
SteelBodyworkMetallicPaint,
|
|
SteelBodyworkRustedPaint,
|
|
SteelBodyworkHeavyRust,
|
|
WoodVarnishedDark,
|
|
Chrome,
|
|
FenceChainLink,
|
|
ConcreteUnpainted,
|
|
Grid9x9,
|
|
CeramicTileFloor,
|
|
PlasticBumpy,
|
|
PlasticDustySmeared,
|
|
AluminiumGarageDoor,
|
|
SteelRigidScratched,
|
|
AluminiumBrushedTinted,
|
|
AluminiumSheetStained,
|
|
ConcretePaintedGrooves,
|
|
PlasticSpecklySatin,
|
|
SteelBodyworkPaintedChipped,
|
|
WoodPainted,
|
|
WoodRoughGrungy,
|
|
}
|
|
} |