/// <summary>
        /// Default constructor
        /// </summary>
        public ROIPKExplorerUtility()
        {
            // Get the game install directory
            var installDir = Games.RaymanOrigins.GetInstallDir();

            // Set properties
            var archiveFiles = new FileSystemPath[]
            {
                installDir + "GameData" + "bundle_PC.ipk",
            };

            ViewModel = new BaseUbiArtIPKExplorerUtilityViewModel(GameMode.RaymanOriginsPC, archiveFiles);
        }
        /// <summary>
        /// Default constructor
        /// </summary>
        public RLIPKExplorerUtility()
        {
            // Get the game install directory
            var installDir = Games.RaymanLegends.GetInstallDir();

            // Set properties
            var archiveFiles = new FileSystemPath[]
            {
                installDir + "Bundle_PC.ipk",
                installDir + "persistentLoading_PC.ipk",
            };

            ViewModel = new BaseUbiArtIPKExplorerUtilityViewModel(UbiArtGameMode.RaymanLegendsPC, archiveFiles);
        }