public void UnityUtilityTestSimplePasses()
        {
            MainLoop.Init();
            UtilsConsole.Init(null);

            Log.Debug("debug test");
            Log.Error("error test");

            Timer.Execute(() => Log.Debug("timer test")).WithDelay(2f);
        }