IEnumerator StartUp()
    {
        neuralNetwork.InitializeNNVariables();
        yield return(null);

        neuralNetwork.LoadNumbersFromfile();
        yield return(null);

        makeScreen.CustomStart();
        yield return(null);

        screenControls.CustomStart();
        yield return(null);

        ubyteParser.CustomStart();
        yield return(null);

        UINNResults.CustomStart();
    }