/*private async Task<string> Update_Log()
         * {
         *  rtb_Output.Clear();
         *  for (var i = 0; i < log_text.Count; i++)
         *  {
         *      rtb_Output.AppendText(log_text[i]);
         *  }
         *
         *  return "";
         * }*/

        // SPRITES
        private void btn_Sprites_Click(object sender, EventArgs e)
        {
            if (running == false)
            {
                running = true;
                var loc_a = System.Reflection.Assembly.GetEntryAssembly().Location.LastIndexOf("\\") + "\\".Length;
                var loc_b = System.Reflection.Assembly.GetEntryAssembly().Location.Length - loc_a;
                Sprites.Convert_Sprites_From_Path(System.Reflection.Assembly.GetEntryAssembly().Location.Remove(loc_a) + "sprites\\");
            }
        }