implemented Entis archives decryption.

This commit is contained in:
morkt
2015-05-27 13:57:34 +04:00
parent 6fa4b53299
commit d2eb1bbf8f
9 changed files with 459 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
using System.Windows.Controls;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetNOA.xaml
/// </summary>
public partial class WidgetNOA : Grid
{
public WidgetNOA ()
{
InitializeComponent ();
// select first scheme as default
if (-1 == Scheme.SelectedIndex)
Scheme.SelectedIndex = 0;
}
}
}