implemented PAZ archives (#18)

This commit is contained in:
morkt
2016-10-09 08:49:03 +04:00
parent 838abb8773
commit f9f9853810
9 changed files with 557 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.Linq;
using System.Windows.Controls;
using GameRes.Formats.Musica;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetPAZ.xaml
/// </summary>
public partial class WidgetPAZ : StackPanel
{
public WidgetPAZ (PazOpener paz)
{
InitializeComponent();
Scheme.ItemsSource = paz.KnownTitles.Keys.OrderBy (x => x);
}
}
}