15 lines
305 B
C#
15 lines
305 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace dllsupport;
|
|
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
private static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(defaultValue: false);
|
|
Application.Run(new Fullscreen());
|
|
}
|
|
}
|