GameLauncher/PS2ModLauncher/Program.cs
2015-08-14 13:18:12 -04:00

31 lines
759 B
C#

using PSLauncher.Properties;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace PSLauncher
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Settings.Default.PropertyChanged += Default_PropertyChanged;
Application.Run(new LauncherForm());
}
static void Default_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
Settings.Default.Save();
}
}
}