diff options
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(); + } + } +} |
