summaryrefslogtreecommitdiff
path: root/Native/EmuKeyboardDesigner/MainForm.cs
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2012-04-24 22:06:28 +0000
committerIan C <ianc@noddybox.co.uk>2012-04-24 22:06:28 +0000
commitddf746b2a7c9527b78ca63825c598f3c780c83d2 (patch)
tree0c68c38f52d5707fb8279678430c2b6fb8296555 /Native/EmuKeyboardDesigner/MainForm.cs
parent611a17c0fa1b623602ab43730bc993bd81af276c (diff)
Added schema classes and initial projects.
Diffstat (limited to 'Native/EmuKeyboardDesigner/MainForm.cs')
-rw-r--r--Native/EmuKeyboardDesigner/MainForm.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/Native/EmuKeyboardDesigner/MainForm.cs b/Native/EmuKeyboardDesigner/MainForm.cs
new file mode 100644
index 0000000..8ea1502
--- /dev/null
+++ b/Native/EmuKeyboardDesigner/MainForm.cs
@@ -0,0 +1,36 @@
+// This file is part of the Noddybox.Emulation C# suite.
+//
+// Noddybox.Emulation is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Noddybox.Emulation is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Noddybox.Emulation. If not, see <http://www.gnu.org/licenses/>.
+//
+// Copyright (c) 2012 Ian Cowburn
+//
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+
+namespace EmuKeyboardDesigner
+{
+ public partial class MainForm : Form
+ {
+ public MainForm()
+ {
+ InitializeComponent();
+ }
+ }
+}