VenomRat-SourceCode/Handle_Packet/HandleReportWindow.cs
2023-07-29 23:37:10 +05:30

15 lines
364 B
C#

using System.Drawing;
using Server.Connection;
using Server.Properties;
namespace Server.Handle_Packet;
public class HandleReportWindow
{
public HandleReportWindow(Clients client, string title)
{
new HandleLogs().Addmsg("Client " + client.Ip + " opened [" + title + "]", Color.Blue);
_ = Server.Properties.Settings.Default.Notification;
}
}