TRX/tools/installer/TR1X_Installer/App.xaml.cs
lahm86 cf8fc3d6bf tools/installer: migrate TR1X installer
This migrates the TR1X installer to use the new common library.
2025-03-30 12:34:54 +01:00

22 lines
547 B
C#

using System.Windows;
using TR1X_Installer.Installers;
using TRX_InstallerLib.Controls;
using TRX_InstallerLib.Installers;
namespace TR1X_Installer;
public partial class App : Application
{
public App()
{
Current.MainWindow = new TRXInstallWindow(new List<IInstallSource>
{
new SteamInstallSource(),
new GOGInstallSource(),
new TombATIInstallSource(),
new CDRomInstallSource(),
new TR1XInstallSource(),
});
Current.MainWindow.Show();
}
}