forked from shaba/openuds
21 lines
416 B
C#
21 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace uds.gui
|
|
{
|
|
public class gui
|
|
{
|
|
|
|
public static void ShowConfig()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new forms.Config());
|
|
}
|
|
|
|
}
|
|
}
|