diff options
| author | Alee14 <Alee14498@gmail.com> | 2018-05-13 18:37:02 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2018-05-13 18:37:02 -0400 |
| commit | 87276961ecb8b440dd8b7018913e09876a3e0022 (patch) | |
| tree | 97f6f0e4f49401eebcbfea51540ae7c664560453 /Project Ports/Terminal.cs | |
| parent | 7920388957421dfcad53eed13454ffe227fdb803 (diff) | |
| download | Project-Silicon-87276961ecb8b440dd8b7018913e09876a3e0022.tar.gz Project-Silicon-87276961ecb8b440dd8b7018913e09876a3e0022.tar.bz2 Project-Silicon-87276961ecb8b440dd8b7018913e09876a3e0022.zip | |
Added the terminal
Diffstat (limited to 'Project Ports/Terminal.cs')
| -rw-r--r-- | Project Ports/Terminal.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Project Ports/Terminal.cs b/Project Ports/Terminal.cs new file mode 100644 index 0000000..ba51f3a --- /dev/null +++ b/Project Ports/Terminal.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 Terminal : Form + { + public Terminal() + { + InitializeComponent(); + } + } +} |
