ShiftOS-TheRevival-Old/ShiftOS-TheRevival-CS/Program.cs
2022-11-07 07:22:01 +07:00

22 lines
522 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ShiftOS_TheRevival_CS
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}