mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
27 lines
672 B
C#
27 lines
672 B
C#
using System.Windows.Forms;
|
|
using AssetStudio;
|
|
|
|
namespace AssetStudioGUI
|
|
{
|
|
internal class AssetItem : ListViewItem
|
|
{
|
|
public SerializedFile sourceFile;
|
|
public ObjectReader reader;
|
|
public long FullSize;
|
|
public ClassIDType Type;
|
|
public string TypeString;
|
|
public string InfoText;
|
|
public string UniqueID;
|
|
public GameObject gameObject;
|
|
|
|
public AssetItem(ObjectReader reader)
|
|
{
|
|
sourceFile = reader.assetsFile;
|
|
this.reader = reader;
|
|
FullSize = reader.byteSize;
|
|
Type = reader.type;
|
|
TypeString = Type.ToString();
|
|
}
|
|
}
|
|
}
|