remove orphaned PMDExtensionArchiveFile class

This commit is contained in:
Michael Becker 2021-01-10 18:33:22 -05:00
parent 7318cdacaa
commit e1f79aea7e
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -1,32 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.ObjectModels.AniMiku.PMDExtension
{
public class PMDExtensionArchiveFile : ICloneable
{
public class PMDExtensionArchiveFileCollection
: System.Collections.ObjectModel.Collection<PMDExtensionArchiveFile>
{
}
private string mvarName = String.Empty;
public string Name { get { return mvarName; } set { mvarName = value; } }
private System.Collections.Specialized.StringCollection mvarTextureImageFileNames = new System.Collections.Specialized.StringCollection();
public System.Collections.Specialized.StringCollection TextureImageFileNames { get { return mvarTextureImageFileNames; } }
public object Clone()
{
PMDExtensionArchiveFile clone = new PMDExtensionArchiveFile();
clone.Name = (mvarName.Clone() as string);
foreach (string s in mvarTextureImageFileNames)
{
clone.TextureImageFileNames.Add(s.Clone() as string);
}
return clone;
}
}
}