From bd284418387617e3ac2c3c4bb8c26470266015ea Mon Sep 17 00:00:00 2001 From: Alee Date: Mon, 11 Feb 2019 16:17:38 -0500 Subject: Add project files. --- Microbit/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Microbit/Program.cs (limited to 'Microbit/Program.cs') diff --git a/Microbit/Program.cs b/Microbit/Program.cs new file mode 100644 index 0000000..e040909 --- /dev/null +++ b/Microbit/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Microbit +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3