Added launcher exe's for RPF Explorer, Peds and Vehicles

This commit is contained in:
dexy
2020-01-27 23:03:44 +11:00
Unverified
parent fd1efc3ee0
commit 583cbc28d5
34 changed files with 1724 additions and 660 deletions
+10
View File
@@ -7,6 +7,7 @@ using System.IO;
using System.Windows.Forms;
using CodeWalker.Properties;
using Microsoft.Win32;
using CodeWalker.GameFiles;
namespace CodeWalker
{
@@ -155,5 +156,14 @@ namespace CodeWalker
}
public static string AutoDetectFolder() => AutoDetectFolder(out string _);
public static void UpdateSettings()
{
if (string.IsNullOrEmpty(Settings.Default.Key) && (GTA5Keys.PC_AES_KEY != null))
{
Settings.Default.Key = Convert.ToBase64String(GTA5Keys.PC_AES_KEY);
Settings.Default.Save();
}
}
}
}