implemented ISF scripts decryption.

This commit is contained in:
morkt
2015-06-18 17:04:12 +04:00
parent 5288e75c6b
commit 6f8b57cc03
11 changed files with 270 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
using System.Windows.Controls;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetISF.xaml
/// </summary>
public partial class WidgetISF : StackPanel
{
public WidgetISF ()
{
InitializeComponent ();
if (-1 == Scheme.SelectedIndex)
Scheme.SelectedIndex = 0;
}
}
}