Terraria.Wiring.Initialize C# (CSharp) Method

Initialize() public static method

public static Initialize ( ) : void
return void
        public static void Initialize()
        {
            Wiring._wireSkip = new Dictionary<Point16, bool>();
            Wiring._wireList = new DoubleStack<Point16>(1024, 0);
            Wiring._toProcess = new Dictionary<Point16, byte>();
            Wiring._inPumpX = new int[20];
            Wiring._inPumpY = new int[20];
            Wiring._outPumpX = new int[20];
            Wiring._outPumpY = new int[20];
            Wiring._teleport = new Vector2[2];
            Wiring._mechX = new int[1000];
            Wiring._mechY = new int[1000];
            Wiring._mechTime = new int[1000];
        }