-
Notifications
You must be signed in to change notification settings - Fork 2
/
Program.cs
33 lines (31 loc) · 1.33 KB
/
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
33
// /////////////////////////////////////////////////////////////////////////////
// ________ .__
// / _____/ ____ ____ ___________|__| ____
// / \ ____/ __ \ / \_/ __ \_ __ \ |/ ___\
// \ \_\ \ ___/| | \ ___/| | \/ \ \___
// \______ /\___ >___| /\___ >__| |__|\___ >
// \/ \/ \/ \/ \/
// ________ .__ __ .__
// \______ \ |__|____ ____ ____ ____ _______/ |_|__| ____
// | | \| \__ \ / ___\ / \ / _ \/ ___/\ __\ |/ ___\
// | ` \ |/ __ \_/ /_/ > | ( <_> )___ \ | | | \ \___
// /_______ /__(____ /\___ /|___| /\____/____ > |__| |__|\___ >
// \/ \//_____/ \/ \/ \/ //Version 1.0.0
//
using System;
using System.Windows.Forms;
namespace PassThruJ2534
{
// Token: 0x02000006 RID: 6
internal static class Program
{
// Token: 0x06000031 RID: 49 RVA: 0x000046D6 File Offset: 0x000028D6
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new PassThru());
}
}
}