diff options
| author | TheEdgeNK <trey6979@gmail.com> | 2018-09-01 00:36:43 -0400 |
|---|---|---|
| committer | TheEdgeNK <trey6979@gmail.com> | 2018-09-01 00:36:43 -0400 |
| commit | fb69cc80fc9e22549915f2a0905323f145e23374 (patch) | |
| tree | fe96528ac85d03485fef7fbe72131e80878d4694 /PortsTerminal/Program.cs | |
| parent | e9e4ec9c4ede2ac2a2c954e0a8b8fef946322c4e (diff) | |
| download | Project-Silicon-fb69cc80fc9e22549915f2a0905323f145e23374.tar.gz Project-Silicon-fb69cc80fc9e22549915f2a0905323f145e23374.tar.bz2 Project-Silicon-fb69cc80fc9e22549915f2a0905323f145e23374.zip | |
New terminal in the form of a console application
Diffstat (limited to 'PortsTerminal/Program.cs')
| -rw-r--r-- | PortsTerminal/Program.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/PortsTerminal/Program.cs b/PortsTerminal/Program.cs new file mode 100644 index 0000000..6640c6c --- /dev/null +++ b/PortsTerminal/Program.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using PortEngine; + +namespace PortsTerminal +{ + class Program + { + static void Main(string[] args) + { + bool RunConsole = true; + PortsTerminalAPI.InitializeConsole(); + + while(RunConsole == true) + { + PortsTerminalAPI.RunCommand(Console.ReadLine()); + } + + + Console.ReadLine(); + } + } +} |
