| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace MusicPlayer
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [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);
- }
- }
- }
|