mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
implemented PAZ archives (#18)
This commit is contained in:
18
ArcFormats/Musica/WidgetPAZ.xaml.cs
Normal file
18
ArcFormats/Musica/WidgetPAZ.xaml.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user