2017-09-21 22:16:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
2017-09-27 22:32:16 +00:00
|
|
|
|
using ShiftOS.Main.ShiftOS;
|
2017-09-21 22:16:49 +00:00
|
|
|
|
|
2017-09-23 16:17:59 +00:00
|
|
|
|
namespace ShiftOS.Main
|
2017-09-21 22:16:49 +00:00
|
|
|
|
{
|
2017-11-05 23:47:46 +00:00
|
|
|
|
static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2017-09-27 22:32:16 +00:00
|
|
|
|
|
2017-11-11 13:53:55 +00:00
|
|
|
|
Application.Run(new Desktop());
|
2017-11-05 23:47:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|