-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathProgram.cs
32 lines (30 loc) · 897 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System.Windows.Forms;
using DiscordRPC;
using System;
namespace PacketClientInjector
{
internal static class Program
{
[STAThread]
private static void Main()
{
DiscordRpcClient client = new DiscordRpcClient("866924923338620978");
client.Initialize();
client.SetPresence(new RichPresence()
{
State = "",
Timestamps = Timestamps.Now,
Assets = new Assets
{
LargeImageText = "Packet Client",
SmallImageText = "Minecraft: Bedrock Edition",
LargeImageKey = "icon",
SmallImageKey = "mcbe"
}
});
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(true);
Application.Run(new MainForm());
}
}
}