using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace MusicPlayer { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); NetworkHandler nw = new NetworkHandler("http://jancokock.me"); APIHandler api = new APIHandler(nw); MainForm form = new MainForm(); PlaylistHandler pl = new PlaylistHandler(api); new Main(nw, api, form,pl); Application.Run(form); } } }