diff options
| author | Alee14 <Alee14498@gmail.com> | 2018-05-13 12:35:21 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2018-05-13 12:35:21 -0400 |
| commit | 944d0efd0c7c50771398169862fc5dcbe4dc0086 (patch) | |
| tree | 3c710ebfb1913befd8fa73f4907fe31759daf4c4 /Project Ports/DebugMode.cs | |
| parent | 704a5659188c2e62ff917fd6265794372bc626fb (diff) | |
| download | Project-Silicon-944d0efd0c7c50771398169862fc5dcbe4dc0086.tar.gz Project-Silicon-944d0efd0c7c50771398169862fc5dcbe4dc0086.tar.bz2 Project-Silicon-944d0efd0c7c50771398169862fc5dcbe4dc0086.zip | |
Added debug mode
Diffstat (limited to 'Project Ports/DebugMode.cs')
| -rw-r--r-- | Project Ports/DebugMode.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Project Ports/DebugMode.cs b/Project Ports/DebugMode.cs new file mode 100644 index 0000000..dc25eca --- /dev/null +++ b/Project Ports/DebugMode.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 Project_Ports +{ + public partial class DebugMode : Form + { + public DebugMode() + { + InitializeComponent(); + } + } +} |
