diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-11 16:17:38 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-11 16:17:38 -0500 |
| commit | bd284418387617e3ac2c3c4bb8c26470266015ea (patch) | |
| tree | 9648b24ad1c54cea7f43551585a4abf2e172597e /Microbit/Program.cs | |
| parent | 6edebc7dfd025de2e688809a0712fb09fb58c9ae (diff) | |
| download | Microbit-bd284418387617e3ac2c3c4bb8c26470266015ea.tar.gz Microbit-bd284418387617e3ac2c3c4bb8c26470266015ea.tar.bz2 Microbit-bd284418387617e3ac2c3c4bb8c26470266015ea.zip | |
Add project files.
Diffstat (limited to 'Microbit/Program.cs')
| -rw-r--r-- | Microbit/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} |
