diff --git a/App.xaml.cs b/App.xaml.cs index db182dcf..d6f8c48c 100644 --- a/App.xaml.cs +++ b/App.xaml.cs @@ -44,8 +44,19 @@ namespace GARbro.GUI public static string Name { get { return "GARbro"; } } + /// + /// Initial browsing directory. + /// public string InitPath { get; private set; } + + /// + /// Path to the currently open archive, or empty string if none. + /// public string CurrentPath { get; private set; } + + /// + /// Archive file being browsed, or null. + /// public ArcFile CurrentArchive { get; private set; } void ApplicationStartup (object sender, StartupEventArgs e)