mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00
23 lines
547 B
C#
23 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();
|
|||
|
}
|
|||
|
}
|