From 6e9f5f737822b4b5d43a4b9afe32cf72992908fc Mon Sep 17 00:00:00 2001 From: morkt Date: Tue, 9 Jun 2015 02:36:35 +0400 Subject: [PATCH] (SubDirEntry): class is defined as part of GameRes filesystem layer now. --- ViewModel.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ViewModel.cs b/ViewModel.cs index a79cafaa..1e9fe4fc 100644 --- a/ViewModel.cs +++ b/ViewModel.cs @@ -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 { public string Path { get; private set; }