18 lines
526 B
C#
18 lines
526 B
C#
#nullable enable
|
|
|
|
namespace Barotrauma
|
|
{
|
|
internal static class CircuitBoxSizes
|
|
{
|
|
public const int ConnectorSize = 32;
|
|
public const int AnchorOffset = 24;
|
|
public const int NodeHeaderHeight = 48;
|
|
public const int NodeInitialPadding = 64;
|
|
public const int WireWidth = 10;
|
|
public const int WireKnobLength = 16;
|
|
public const int NodeHeaderTextPadding = 8;
|
|
public const int NodeBodyTextPadding = 8;
|
|
|
|
public const float PlayableAreaSize = 8192f;
|
|
}
|
|
} |