mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
20 lines
405 B
C#
20 lines
405 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Windows.Forms;
|
||
|
|
|
||
|
|
namespace CUERipper
|
||
|
|
{
|
||
|
|
static class Program
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The main entry point for the application.
|
||
|
|
/// </summary>
|
||
|
|
[STAThread]
|
||
|
|
static void Main()
|
||
|
|
{
|
||
|
|
Application.EnableVisualStyles();
|
||
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
||
|
|
Application.Run(new frmCUERipper());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|