Started networking tools
This commit is contained in:
24
C#/Networking Tools/Networking Tools/UserInterface.cs
Normal file
24
C#/Networking Tools/Networking Tools/UserInterface.cs
Normal 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;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user