Started networking tools

This commit is contained in:
plane000
2018-05-12 12:54:49 +01:00
parent 8a06a1f9a1
commit f91a6a0e41
15 changed files with 349 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Networking_Tools {
class UserInterface {
private int startWidth;
private int startHeight;
public void Load() {
Console.SetCursorPosition(0, 0);
startHeight = Console.WindowHeight;
startWidth = Console.WindowWidth;
}
}
}