15 lines
422 B
C#
15 lines
422 B
C#
|
using System;
|
|||
|
namespace GamecraftModdingAPI.Blocks
|
|||
|
{
|
|||
|
public enum TweakableStat
|
|||
|
{
|
|||
|
TopSpeed, // MotorReadOnlyStruct
|
|||
|
Torque, // MotorReadOnlyStruct
|
|||
|
MaxExtension, // PistonReadOnlyStruct
|
|||
|
MinAngle, // ServoReadOnlyStruct
|
|||
|
MaxAngle, // ServoReadOnlyStruct
|
|||
|
Reverse, // MotorReadOnlyStruct or ServoReadOnlyStruct
|
|||
|
StartValue, // SignalGeneratorEntityStruct
|
|||
|
}
|
|||
|
}
|