diff options
| author | EverythingWindows <[email protected]> | 2022-11-07 07:22:01 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-07 07:22:01 +0700 |
| commit | 8dc0fd274fa042f0e69d6763ee79ed3f79bb7b14 (patch) | |
| tree | 6320cca38cb1e70b7b283d47d14283e615d311d7 /ShiftOS-TheRevival-CS/Program.cs | |
| parent | 78525e6c04152957c5862ace155b90a9ac060002 (diff) | |
| download | shiftos-therevival-old-8dc0fd274fa042f0e69d6763ee79ed3f79bb7b14.tar.gz shiftos-therevival-old-8dc0fd274fa042f0e69d6763ee79ed3f79bb7b14.tar.bz2 shiftos-therevival-old-8dc0fd274fa042f0e69d6763ee79ed3f79bb7b14.zip | |
csharp branch initialize
Diffstat (limited to 'ShiftOS-TheRevival-CS/Program.cs')
| -rw-r--r-- | ShiftOS-TheRevival-CS/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival-CS/Program.cs b/ShiftOS-TheRevival-CS/Program.cs new file mode 100644 index 0000000..54e9112 --- /dev/null +++ b/ShiftOS-TheRevival-CS/Program.cs @@ -0,0 +1,22 @@ +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()); + } + } +} |
