using BeatLyrics.Tool.Utils; using System; using System.Windows.Forms; namespace BeatLyrics.Tool { internal static class Program { /// /// 应用程序的主入口点。 /// [STAThread] private static void Main() { //var levels = LocalCustomLevelProvider.GetAlLevelInfos(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); if (OggAudioPlayer.IsPlaying) OggAudioPlayer.Unload(); } } }