implemented Tamamo PCK archives.

This commit is contained in:
morkt
2017-11-16 11:34:52 +04:00
parent 5d6438c2b6
commit f4e5fc6029
7 changed files with 343 additions and 32 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
using System.Windows.Controls;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetPCK.xaml
/// </summary>
public partial class WidgetPCK : StackPanel
{
public WidgetPCK (IEnumerable<string> keys)
{
InitializeComponent ();
Title.ItemsSource = keys;
}
}
}