We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08563a7 commit a678defCopy full SHA for a678def
1 file changed
Loader/Program.cs
@@ -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