implemented 'LEAFPACK' archives and LFG images.

This commit is contained in:
morkt
2018-11-07 11:50:38 +04:00
parent 57399ff6eb
commit f787e608c9
10 changed files with 614 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetLEAF.xaml
/// </summary>
public partial class WidgetLEAF : StackPanel
{
public WidgetLEAF (IEnumerable<string> titles)
{
this.InitializeComponent();
this.DataContext = titles.OrderBy (x => x);
}
}
}