diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-11 16:23:17 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-11 16:23:17 -0500 |
| commit | 97c66fb4ea00941c83bbf6c0778fced0daf37c9f (patch) | |
| tree | 85283e6bea4f49643a5f1560122644c6281ec763 /Microbit/MainMenu.cs | |
| parent | bd284418387617e3ac2c3c4bb8c26470266015ea (diff) | |
| download | Microbit-97c66fb4ea00941c83bbf6c0778fced0daf37c9f.tar.gz Microbit-97c66fb4ea00941c83bbf6c0778fced0daf37c9f.tar.bz2 Microbit-97c66fb4ea00941c83bbf6c0778fced0daf37c9f.zip | |
Added appveyor and renamed Form1 to MainMenu
Diffstat (limited to 'Microbit/MainMenu.cs')
| -rw-r--r-- | Microbit/MainMenu.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Microbit/MainMenu.cs b/Microbit/MainMenu.cs new file mode 100644 index 0000000..4e585e3 --- /dev/null +++ b/Microbit/MainMenu.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Microbit +{ + public partial class MainMenu : Form + { + public MainMenu() + { + InitializeComponent(); + } + } +} |
