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
+29
View File
@@ -0,0 +1,29 @@
using CodeWalker.GameFiles;
using CodeWalker.Properties;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CodeWalker.RPFExplorer
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
//Process.Start("CodeWalker.exe", "explorer");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ExploreForm());
GTAFolder.UpdateSettings();
}
}
}