NorbiPeti
807470e289
Now it prints them ordered and mostly suitable to be used in code (it only needs a couple replaces)
112 lines
No EOL
2.6 KiB
C#
112 lines
No EOL
2.6 KiB
C#
namespace GamecraftModdingAPI.Blocks
|
|
{
|
|
/// <summary>
|
|
/// Possible block types
|
|
/// </summary>
|
|
public enum BlockIDs : ushort
|
|
{
|
|
/// <summary>
|
|
/// Called "nothing" in Gamecraft. (DBID.NOTHING)
|
|
/// </summary>
|
|
Invalid = ushort.MaxValue,
|
|
Cube = 0,
|
|
Wedge,
|
|
QuarterPyramid,
|
|
Tetrahedron,
|
|
RoundedWedge,
|
|
RoundedQuarterPyramid,
|
|
RoundedTetrahedron,
|
|
NegativeQuarterPyramid,
|
|
NegativeTetrahedron,
|
|
RoundedNegativeQuarterPyramid,
|
|
RoundedNegativeTetrahedron,
|
|
Plate,
|
|
PlateWedge,
|
|
PlateQuarterPyramid,
|
|
PlateTetrahedron,
|
|
Sphere,
|
|
Frame,
|
|
FrameS1,
|
|
FrameS2,
|
|
FrameS3,
|
|
FrameS4,
|
|
FrameS5,
|
|
FrameWedge,
|
|
FrameWedgeS1,
|
|
FrameWedgeS2,
|
|
FrameWedgeS3,
|
|
FrameWedgeS4,
|
|
SideS0S1,
|
|
SideS0S2,
|
|
SideS0S3,
|
|
SideS0S4,
|
|
SideS0S5,
|
|
SideS1S1,
|
|
SideS1S2,
|
|
SideS1S3,
|
|
SideS1S4,
|
|
SideS1S5,
|
|
SideS2S1,
|
|
SideS2S2,
|
|
SideS2S3,
|
|
SideS2S4,
|
|
SideS2S5,
|
|
WindscreenS1,
|
|
WindscreenS2,
|
|
WindscreenS3,
|
|
WindscreenS4,
|
|
WindscreenS5,
|
|
CarWheelArch,
|
|
CarArchSmallFlare,
|
|
CarArchFlare,
|
|
CarArchExtrudedFlare,
|
|
Axle = 100,
|
|
Hinge,
|
|
BallJoint,
|
|
UniversalJoint,
|
|
TelescopicJoint,
|
|
DampedHingeSpring,
|
|
DampedAxleSpring,
|
|
DampedSpring,
|
|
WheelRigNoSteering,
|
|
WheelRigWithSteering,
|
|
PlateTriangle = 130,
|
|
PlateCircle,
|
|
PlateQuarterCircle,
|
|
PlateRWedge,
|
|
PlateRTetrahedron,
|
|
Cone,
|
|
ConeSegment,
|
|
DoubleSliced,
|
|
HalfDoubleSliced,
|
|
EighthPyramid,
|
|
Hemisphere,
|
|
WideCylinder,
|
|
WideCylinderBend,
|
|
WideCylinderT,
|
|
WideCylinderCross,
|
|
WideCylinderCorner,
|
|
NarrowCylinder,
|
|
NarrowCylinderBend,
|
|
NarrowCylinderT,
|
|
NarrowCylinderCross,
|
|
DriverSeat,
|
|
PassengerSeat,
|
|
Engine,
|
|
NarrowCylinderCorner,
|
|
PlateWideCylinder,
|
|
PlateNarrowCylinder,
|
|
PlateNegativeTetrahedron,
|
|
PlateNegativeQuarterPyramid,
|
|
PlateRoundedNegativeTetrahedron,
|
|
PlateRoundedNegativeQuarterPyramid,
|
|
HeadlampSquare,
|
|
HeadlampCircle,
|
|
HeadlampWedge,
|
|
WideCylinderDiagonal,
|
|
NarrowCylinderDiagonal,
|
|
HeadlampTetrahedron,
|
|
CarWheelWideProfile = 200,
|
|
CarWheel,
|
|
}
|
|
} |