(SubDirEntry): class is defined as part of GameRes filesystem layer now.

This commit is contained in:
morkt 2015-06-09 02:36:35 +04:00
parent 460f6b4447
commit 6e9f5f7378

View File

@ -39,17 +39,6 @@ using GARbro.GUI.Strings;
namespace GARbro.GUI
{
public class SubDirEntry : GameRes.Entry
{
public override string Type { get { return "directory"; } }
public SubDirEntry (string name)
{
Name = name;
Size = 0;
}
}
public class DirectoryViewModel : ObservableCollection<EntryViewModel>
{
public string Path { get; private set; }