implemented 'non color' ARC archives.

This commit is contained in:
morkt
2016-05-20 04:12:23 +04:00
parent f4517d4183
commit 2b41686e3f
8 changed files with 377 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
using System.Windows.Controls;
using System.Linq;
using GameRes.Formats.NonColor;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetNCARC.xaml
/// </summary>
public partial class WidgetNCARC : StackPanel
{
public WidgetNCARC()
{
InitializeComponent();
Scheme.ItemsSource = DatOpener.KnownSchemes.OrderBy (x => x.Key);
}
}
}