private static void SupportedChampionsNotify()
        {
            var drawPos = new Vector2(120, 120);

            Render.Text MainText = new Render.Text("OlympusAIO - Supported Champions", drawPos, 20, new ColorBGRA(170, 255, 47, 255));
            MainText.Add(0);
            MainText.OnDraw();

            foreach (var champ in SupportedChampions)
            {
                drawPos += new Vector2(0, 30);

                Render.Text SupportingChampions = new Render.Text(champ, drawPos, 20, new ColorBGRA(255, 222, 173, 255));
                SupportingChampions.Add(0);
                SupportingChampions.OnDraw();

                DelayAction.Add(13000, () => SupportingChampions.Remove());
            }

            DelayAction.Add(13000, () => MainText.Remove());
        }