Client LuaCsForBarotrauma
CircuitBoxSizes.cs
1 #nullable enable
2 
3 namespace Barotrauma
4 {
5  internal static class CircuitBoxSizes
6  {
7  public const int ConnectorSize = 32;
8  public const int AnchorOffset = 24;
9  public const int NodeHeaderHeight = 48;
10  public const int NodeInitialPadding = 64;
11  public const int WireWidth = 10;
12  public const int WireKnobLength = 16;
13  public const int NodeHeaderTextPadding = 8;
14  public const int NodeBodyTextPadding = 8;
15 
16  public const float PlayableAreaSize = 8192f;
17  }
18 }