Skip to content

Commit a678def

Browse files
author
Connor-Fair55
committed
Program.cs
1 parent 08563a7 commit a678def

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Loader/Program.cs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
using undericalloader.Auth;
7+
8+
namespace undericalloader
9+
{
10+
internal static class Program
11+
{
12+
public static api KeyAuthApp = new api(
13+
name: "FiveM1", // change
14+
ownerid: "PwBTV43ofz", // change
15+
secret: "226b407f71d9c16679b3c42401bcb21a2f651375df726c7f247b6b325fd21272", // change
16+
version: "1.0" // change
17+
);
18+
[STAThread]
19+
static void Main()
20+
{
21+
KeyAuthApp.init();
22+
Application.EnableVisualStyles();
23+
Application.SetCompatibleTextRenderingDefault(false);
24+
Application.Run(new Form1());
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)